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

This commit is contained in:
2025-11-15 20:15:30 +01:00
parent f9507d0329
commit 7501920451

View File

@@ -99,3 +99,30 @@ variable "dns_proxied" {
type = bool
default = true
}
#======================================================
# IDENTITY PROVIDERS
#======================================================
variable "cf_okta_identity_provider_id" {
description = "Okta Identity Provider ID in Cloudflare"
type = string
sensitive = true
}
variable "cf_otp_identity_provider_id" {
description = "OneTime PIN identity provider ID in Cloudflare"
type = string
sensitive = true
}
variable "cf_azure_identity_provider_id" {
description = "Azure Entra ID identity provider ID in Cloudflare"
type = string
sensitive = true
}
variable "cf_azure_admin_rule_group_id" {
description = "Azure Administrators Rule Group ID in Cloudflare"
type = string
sensitive = true
}