-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
260 lines (229 loc) · 7.07 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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
variable admin_ip_ranges {
default = []
}
variable admin_object_id {
default = null
}
variable admin_username {
default = "dev"
}
variable address_space {
default = "10.201.0.0/16"
}
variable application_name {
description = "Value of 'application' resource tag"
default = "Development Environment"
}
variable application_owner {
description = "Value of 'owner' resource tag"
default = "" # Empty string takes objectId of current user
}
variable bastion_tags {
description = "A map of the tags to use for the bastion resources that are deployed"
type = map
default = {}
}
variable bootstrap_branch {
default = "master"
}
variable configure_access_control {
description = "Assumes the Terraform user is an owner of the subscription. Turning this off reduces functionality somewhat"
default = true
type = bool
}
variable deploy_bastion {
type = bool
default = true
}
variable deploy_vpn {
type = bool
default = false
}
variable deploy_linux {
type = bool
default = true
description = "Disabling this, also disables DNS forwarding"
}
# BUG: Won't work with visualstudio2022 images
variable deploy_azure_monitor_extensions {
type = bool
default = true
description = "Disabling to prevent collisions with agents provisioned through other means e.g. inherited policy"
}
variable deploy_nat_gateway {
default = true
type = bool
}
variable deploy_service_map {
type = bool
default = false
}
variable deploy_windows {
type = bool
default = true
}
variable development_resource_group {
default = "Development"
}
variable development_network {
default = "Development-vnet"
}
variable devops_org {
default = null
}
variable devops_pat {
default = null
}
variable dns_zone_id {
default = null
}
variable enable_aad_login {
type = bool
default = true
}
variable enable_disk_encryption {
type = bool
default = false
}
variable enable_policy_extensions {
type = bool
default = false
}
variable enable_public_access {
type = bool
default = false
}
variable enable_update_schedule {
type = bool
default = false
}
variable environment_variables {
type = map
default = {
provisioner = "terraform"
}
}
variable git_email {
default = ""
}
variable git_name {
default = ""
}
variable global_vnet_peering {
type = bool
default = true
}
variable install_tools {
type = bool
default = false
}
variable linux_os_image_id {
default = null
}
variable linux_os_offer {
default = "0001-com-ubuntu-server-jammy"
}
variable linux_os_publisher {
default = "Canonical"
}
variable linux_os_sku {
default = "22_04-lts"
}
variable linux_os_version {
default = "latest"
}
variable linux_vm_size {
default = "Standard_B2s"
}
variable locations {
type = list
default = ["westeurope"]
}
variable log_analytics_workspace_id {
description = "Specify a pre-existing Log Analytics workspace. The workspace needs to have the Security, SecurityCenterFree, ServiceMap, Updates, VMInsights solutions provisioned"
default = ""
}
variable prepare_host {
type = bool
default = true
}
variable resource_prefix {
description = "The prefix to put at the of resource names created"
default = "dev"
}
variable resource_suffix {
description = "The suffix to put at the of resource names created"
default = "" # Empty string triggers a random suffix
}
variable run_id {
description = "The ID that identifies the pipeline / workflow that invoked Terraform"
default = ""
}
variable script_wrapper_check {
description = "Set to true in a .auto.tfvars file to force Terraform to check whether it's run from deploy.ps1"
type = bool
default = false
}
variable shutdown_time {
default = "23:59"
description = "Time the VM will be stopped daily. Setting this to null or an empty string disables auto shutdown."
}
variable ssh_private_key {
default = "~/.ssh/id_rsa"
}
variable ssh_public_key {
default = "~/.ssh/id_rsa.pub"
}
variable subscription_id {
description = "Configure subscription_id independent from ARM_SUBSCRIPTION_ID"
default = null
}
variable tags {
description = "A map of the tags to use for the resources that are deployed"
type = map
default = {
shutdown = "true"
}
}
variable tenant_id {
description = "Configure tenant_id independent from ARM_TENANT_ID"
default = null
}
variable timezone {
default = "W. Europe Standard Time"
}
variable vpn_range {
default = "192.168.0.0/24"
}
variable windows_accelerated_networking {
type = bool
default = false
}
variable windows_os_offer {
default = "visualstudio2022"
}
variable windows_os_image_id {
default = null
}
variable windows_os_version {
default = "latest"
}
variable windows_os_publisher {
default = "microsoftvisualstudio"
}
variable windows_os_sku {
default = "vs-2022-ent-latest-win11-n" # vs-2022-comm-latest-win11-n 2022.02.18 doesn't work with Log Analytics extension
}
variable windows_vm_size {
default = "Standard_B2ms"
}
variable vm_domain {
default = "dev.internal"
}
variable vm_subnet {
default = "default"
}
# Certificate data
variable organization {
default = "DevelopersInc"
}