📦 EqualifyEverything / equalify

📄 variables.tf · 14 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14variable "project_name" {
  type = string
}

variable "environment" {
  type = string
}

variable "sso_enabled" {
  description = "Whether to provision placeholder SSO (Azure AD) secret entries. Real tenant values must be filled in manually post-apply since Terraform cannot provision a third party's Azure tenant."
  type        = bool
  default     = false
}