33 lines
777 B
Terraform
33 lines
777 B
Terraform
|
|
# Variables for Management Groups Module
|
||
|
|
|
||
|
|
variable "root_management_group_id" {
|
||
|
|
description = "ID of the root management group"
|
||
|
|
type = string
|
||
|
|
default = "tenant"
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "production_subscription_ids" {
|
||
|
|
description = "List of production subscription IDs"
|
||
|
|
type = list(string)
|
||
|
|
default = []
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "non_production_subscription_ids" {
|
||
|
|
description = "List of non-production subscription IDs"
|
||
|
|
type = list(string)
|
||
|
|
default = []
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "shared_services_subscription_ids" {
|
||
|
|
description = "List of shared services subscription IDs"
|
||
|
|
type = list(string)
|
||
|
|
default = []
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "sandbox_subscription_ids" {
|
||
|
|
description = "List of sandbox subscription IDs"
|
||
|
|
type = list(string)
|
||
|
|
default = []
|
||
|
|
}
|
||
|
|
|