-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
55 lines (46 loc) · 1.78 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
variable "default_location" {
description = "The location for Azure resources. (e.g 'uksouth')|1|azure_location"
type = string
}
variable "subscription_id_connectivity" {
description = "The identifier of the Connectivity Subscription. (e.g '00000000-0000-0000-0000-000000000000')|2|azure_subscription_id"
type = string
}
variable "subscription_id_identity" {
description = "The identifier of the Identity Subscription. (e.g '00000000-0000-0000-0000-000000000000')|3|azure_subscription_id"
type = string
}
variable "subscription_id_management" {
description = "The identifier of the Management Subscription. (e.g 00000000-0000-0000-0000-000000000000)|4|azure_subscription_id"
type = string
}
variable "root_id" {
description = "The root id is the identity for the root management group and a prefix applied to all management group identities|5|azure_name"
type = string
default = "es"
}
variable "root_name" {
description = "The display name for the root management group|6|azure_name"
type = string
default = "Enterprise-Scale"
}
variable "hub_virtual_network_address_prefix" {
description = "The IP address range for the hub network in CIDR format|7|cidr_range"
type = string
default = ""
}
variable "firewall_subnet_address_prefix" {
description = "The IP address range foe the firewall subnet in CIDR format|8|cidr_range"
type = string
default = ""
}
variable "gateway_subnet_address_prefix" {
description = "The IP address range foe the gateway subnet in CIDR format|9|cidr_range"
type = string
default = ""
}
variable "virtual_network_gateway_creation_enabled" {
description = "Whether the virtual network gateway is created|10|bool"
type = bool
default = false
}