diff --git a/variables.tf b/variables.tf index 46b7a26..118c5b3 100644 --- a/variables.tf +++ b/variables.tf @@ -98,4 +98,31 @@ variable "dns_proxied" { description = "Activer le proxy Cloudflare pour les DNS" 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 } \ No newline at end of file