-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
37 lines (31 loc) · 1.2 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
variable "default_location" {
type = string
description = "The location for Azure resources. (e.g 'uksouth')|1|azure_location"
}
variable "subscription_id_connectivity" {
type = string
description = "value of the subscription id for the Connectivity subscription|5|azure_subscription_id"
}
variable "subscription_id_identity" {
type = string
description = "value of the subscription id for the Identity subscription|6|azure_subscription_id"
}
variable "subscription_id_management" {
type = string
description = "value of the subscription id for the Management subscription|4|azure_subscription_id"
}
variable "configuration_file_path" {
type = string
default = ""
description = "The path of the configuration file|7|configuration_file_path"
}
variable "default_postfix" {
type = string
default = "landing-zone"
description = "The default postfix for Azure resources. (e.g 'landing-zone')|2|azure_name"
}
variable "root_parent_management_group_id" {
type = string
default = ""
description = "This is the id of the management group that the ALZ hierarchy will be nested under, will default to the Tenant Root Group|3|azure_name"
}