-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
129 lines (101 loc) · 2.48 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
variable "hub_resource_group" {
description = "Hub resource group"
type = string
}
variable "hub_location" {
description = "Location for hub resources"
type = string
}
variable "hub_vnet_name" {
description = "Hub Virtual Network name"
type = string
}
variable "hub_vnet_cidr" {
description = "Hub Virtual Network CIDR"
type = string
}
variable "gateway_subnet" {
description = "Hub Virtual Network GatewaySubnet CIDR"
type = string
}
variable "firewall_subnet" {
description = "Hub Virtual Network AzureFirewallSubnet CIDR"
type = string
}
variable "bastion_subnet" {
description = "Hub Virtual Network BastionSubnet CIDR"
type = string
}
variable "identity_resource_group" {
description = "Resource Group for Identity Vnet & subnets"
type = string
}
variable "identity_vnet_name" {
description = "Identity Vnet name"
type = string
}
variable "identity_vnet_location" {
description = "Identity Vnet location/region"
type = string
}
variable "identity_vnet_cidr" {
description = "Identity Vnet CIDR"
type = string
}
variable "identity_vnet_subnets" {
description = "Subnets of Identity Vnet"
type = map(any)
}
variable "identity_udr_name" {
description = "UDR name of Identity Vnet"
type = string
}
# variable "identity_udr_routes" {
# description = "UDR routes of Identity Vnet"
# type = map(any)
# }
variable "er_gateway_pip_name" {
description = "ER Public IP name"
type = string
}
variable "er_gateway_name" {
description = "ER Gateway name"
type = string
}
variable "er_gateway_sku" {
description = "ER Gateway SKU"
type = string
}
variable "vpn_gateway_pip_name" {
description = "ER Public IP name"
type = string
}
variable "vpn_gateway_name" {
description = "VPN Gateway name"
type = string
}
variable "vpn_gateway_sku" {
description = "VPN Gateway SKU"
type = string
}
variable "firewall_pip_name" {
description = "Firewall Public IP name"
type = string
}
variable "firewall_name" {
description = "Firewall Name"
type = string
}
variable "firewall_sku_tier" {
description = "Firewall SKU tier Standard/Premium"
type = string
default = "Standard"
}
variable "conn_sub_id" {
description = "Connectivity Subscription ID"
type = string
}
variable "identity_sub_id" {
description = "Identity Subscription ID"
type = string
}