Update variables.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 13s

This commit is contained in:
2025-11-15 20:18:14 +01:00
parent cbd91c03a2
commit d4755a8000

View File

@@ -185,3 +185,35 @@ 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
}