-
Notifications
You must be signed in to change notification settings - Fork 5
/
variables.tf
208 lines (162 loc) · 3.38 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# Resource Group Name
variable "resource_group" {
default = "rg-agw-pep"
}
# Location
variable "location" {
default = "northeurope"
}
# Cosmos DB database name
variable "cosmos_name" {
default = "cosmos"
}
# Storage Account name
variable "sa_name" {
default = "st"
}
# Azure Key Vault Name
variable "keyvault_name" {
default = "kv"
}
# Event Hub Name
variable "eventhub_name" {
default = "evh"
}
# Function App name
variable "func_name" {
default = "func"
}
# Purview name
variable "purview_name" {
default = "pview"
}
# SQL name
variable "sql_name" {
default = "sql"
}
# postgreSQL name
variable "postgresql_name" {
default = "psql"
}
# true to deploy a VM in the on-premises vnet
variable "deploy_vm_on_premises" {
default = false
}
# true to deploy Azure Purview
variable "deploy_purview" {
default = false
}
# true to deploy Azure SQL
variable "deploy_sql" {
default = true
}
# true to deploy postgreSQL
variable "deploy_postgresql" {
default = true
}
variable "deploy_postgresql_flexible" {
default = false
}
# true to deploy Azure Function
variable "deploy_function" {
default = true
}
# true to deploy Cosmos DB
variable "deploy_cosmos" {
default = true
}
# true if TLS/TCP Proxy feature is enabled
variable "tls_tcp_proxy_enabled" {
default = true
}
# true if Full Private Application Gateway feature is enabled
variable "private_gateway_enabled" {
default = true
}
# true to delete them App Gateway public IP address
variable "remove_public_ip" {
default = true
}
# true to use public FQDN for App Gateway's backednd configuration
variable "use_public_fqdn" {
default = true
}
variable "enable_gateway_route_to_firewall" {
default = true
}
variable "enable_gateway_key_vault_integration" {
default = true
}
# true to remove the Gateway Manager and Load Balancer inbound rules from NSGs
variable "remove_gateway_inbound_rules" {
default = true
}
variable "enable_network_policy_for_private_endpoints" {
default = true
}
variable "enable_apim" {
default = true
}
variable "hub_address_space" {
default = ["10.5.0.0/16"]
}
variable "firewall_address_prefixes" {
default = ["10.5.0.0/26"]
}
variable "dns_address_prefixes" {
default = ["10.5.1.0/24"]
}
variable "bastion_address_prefixes" {
default = ["10.5.2.0/27"]
}
variable "hub_jumpbox_address_prefixes" {
default = ["10.5.3.0/24"]
}
variable "vnet_gateway_address_prefixes" {
default = ["10.5.4.0/24"]
}
variable "spoke_address_space" {
default = ["10.6.0.0/16"]
}
variable "gateway_address_prefixes" {
default = ["10.6.1.0/24"]
}
variable "vnet_integration_address_prefixes" {
default = ["10.6.2.0/24"]
}
variable "privateendpoints_address_prefixes" {
default = ["10.6.3.0/24"]
}
variable "jumpbox_address_prefixes" {
default = ["10.6.4.0/24"]
}
variable "flexible_server_address_prefixes" {
default = ["10.6.5.0/24"]
}
variable "apim_address_prefixes" {
default = ["10.6.6.0/24"]
}
variable "contoso_address_space" {
default = ["192.168.0.0/16"]
}
variable "contoso_address_prefixes" {
default = ["192.168.1.0/24"]
}
variable "contoso_tests_address_prefixes" {
default = ["192.168.2.0/24"]
}
variable "publisher_name" {
default = "contoso"
}
variable "publisher_email" {
default = "admin@contoso.com"
}
variable "apim_name" {
default = "apim-v2"
}
# Resource Tags
variable "tags" {
default = {
env = "contoso-application-gateway-tests"
}
}