From d4755a800053efe513bf671aa3df6fcb4bcb2e84 Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Sat, 15 Nov 2025 20:18:14 +0100 Subject: [PATCH] Update variables.tf --- variables.tf | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/variables.tf b/variables.tf index b4cc57c..3f7fcad 100644 --- a/variables.tf +++ b/variables.tf @@ -184,4 +184,36 @@ variable "azure_sales_group_id" { variable "azure_subnet_cidr" { description = "Azure address prefix, subnet for VM in Azure" type = string +} + +#====================================================== +# DEVICE POSTURE CHECKS +#====================================================== +variable "cf_gateway_posture_id" { + description = "Gateway posture ID in Cloudflare" + type = string + sensitive = true +} + +variable "cf_macos_posture_id" { + description = "Latest macOS version posture ID in Cloudflare" + type = string + sensitive = true +} + +variable "cf_windows_posture_id" { + description = "Latest Windows version posture ID in Cloudflare" + type = string + sensitive = true +} + +variable "cf_linux_posture_id" { + description = "Latest Linux Kernel version posture ID in Cloudflare" + type = string + sensitive = true +} + +variable "cf_device_os" { + description = "This is the OS you are running on your own client machine" + type = string } \ No newline at end of file