-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathvariables.tf
More file actions
664 lines (601 loc) · 26.7 KB
/
Copy pathvariables.tf
File metadata and controls
664 lines (601 loc) · 26.7 KB
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
variable "iac_type" {
description = "The type of infrastructure as code to use for the deployment. (e.g. 'terraform' or `bicep)"
type = string
}
variable "module_folder_path" {
description = "The folder for the starter modules"
type = string
}
variable "root_parent_management_group_id" {
description = "The root parent management group ID. This will default to the Tenant Root Group ID if not supplied"
type = string
default = ""
}
variable "subscription_id_connectivity" {
description = "The identifier of the Connectivity Subscription"
type = string
validation {
condition = can(regex("^[0-9a-fA-F-]{36}$", var.subscription_id_connectivity))
error_message = "The bootstrap subscription ID must be a valid GUID"
}
}
variable "subscription_id_identity" {
description = "The identifier of the Identity Subscription"
type = string
validation {
condition = can(regex("^[0-9a-fA-F-]{36}$", var.subscription_id_identity))
error_message = "The bootstrap subscription ID must be a valid GUID"
}
}
variable "subscription_id_management" {
description = "The identifier of the Management Subscription"
type = string
validation {
condition = can(regex("^[0-9a-fA-F-]{36}$", var.subscription_id_management))
error_message = "The bootstrap subscription ID must be a valid GUID"
}
}
variable "configuration_file_path" {
description = "The name of the configuration file"
type = string
default = ""
}
variable "starter_module_name" {
description = "The name of the starter module"
type = string
default = ""
}
variable "on_demand_folder_repository" {
description = "The repository to use for the on-demand folders"
type = string
default = ""
}
variable "on_demand_folder_artifact_name" {
description = "The branch to use for the on-demand folders"
type = string
default = ""
}
variable "bootstrap_location" {
description = "Azure Deployment location for the bootstrap resources (e.g. storage account, identities, etc)"
type = string
}
variable "github_personal_access_token" {
description = "Personal access token for GitHub"
type = string
sensitive = true
}
variable "github_organization_scheme" {
description = "The scheme of your GitHub organization. E.g. 'https' or 'http'"
type = string
default = "https"
validation {
condition = can(regex("^(https|http)$", var.github_organization_scheme))
error_message = "The scheme must be either 'https' or 'http'"
}
}
variable "github_organization_domain_name" {
description = "The domain name of your GitHub organization. E.g. 'my-enterprise.ghe.com'"
type = string
default = "github.com"
validation {
condition = can(regex("^[a-zA-Z0-9.-]+$", var.github_organization_domain_name))
error_message = "The domain name must only contain letters, numbers, dots, and dashes"
}
}
variable "github_api_domain_name" {
description = "The domain name of your GitHub api endpoint. E.g. 'api.my-enterprise.ghe.com'. This is only required if not using the default `api.` prefix"
type = string
default = ""
validation {
condition = var.github_api_domain_name == "" || can(regex("^[a-zA-Z0-9.-]+$", var.github_api_domain_name))
error_message = "The api domain name must only contain letters, numbers, dots, and dashes"
}
}
variable "github_organization_name" {
description = "The name of your GitHub organization. This is the section of the url after 'github.com'. E.g. enter 'my-org' for 'https://github.com/my-org'"
type = string
validation {
condition = can(regex("^[a-zA-Z0-9-]+$", var.github_organization_name))
error_message = "The organization name must only contain letters, numbers, and dashes"
}
}
variable "use_separate_repository_for_templates" {
description = "Controls whether to use a separate repository to store action templates. This is an extra layer of security to ensure that the azure credentials can only be leveraged for the specified workload"
type = bool
default = true
}
variable "bootstrap_subscription_id" {
description = "Azure Subscription ID for the bootstrap resources (e.g. storage account, identities, etc). Leave empty to use the az login subscription"
type = string
default = ""
validation {
condition = var.bootstrap_subscription_id == "" ? true : can(regex("^[0-9a-fA-F-]{36}$", var.bootstrap_subscription_id))
error_message = "The bootstrap subscription ID must be a valid GUID"
}
}
variable "service_name" {
description = "Used to build up the default resource names (e.g. rg-<service_name>-mgmt-uksouth-001)"
type = string
default = "alz"
validation {
condition = can(regex("^[a-z0-9]+$", var.service_name))
error_message = "The service name must only contain lowercase letters and numbers"
}
}
variable "environment_name" {
description = "Used to build up the default resource names (e.g. rg-alz-<environment_name>-uksouth-001)"
type = string
default = "mgmt"
validation {
condition = can(regex("^[a-z0-9]+$", var.environment_name))
error_message = "The environment name must only contain lowercase letters and numbers"
}
}
variable "postfix_number" {
description = "Used to build up the default resource names (e.g. rg-alz-mgmt-uksouth-<postfix_number>)"
type = number
default = 1
}
variable "use_self_hosted_runners" {
description = "Controls whether to use self-hosted runners for the actions"
type = bool
default = true
}
variable "github_runners_personal_access_token" {
description = "Personal access token for GitHub self-hosted runners (the token requires the 'repo' scope and should not expire). Only required if 'use_self_hosted_runners' is 'true'"
type = string
sensitive = true
default = ""
}
variable "use_private_networking" {
description = "Controls whether to use private networking for the runner to storage account communication"
type = bool
default = true
}
variable "use_runner_group" {
description = "Controls whether to use a runner group. This is only relevant if using a GitHub Enterprise licensed organization"
type = bool
default = true
}
variable "allow_storage_access_from_my_ip" {
description = "Allow access to the storage account from the current IP address. We recommend this is kept off for security"
type = bool
default = false
}
variable "apply_approvers" {
description = "Apply stage approvers to the action / pipeline, must be a list of emails or usernames separated by a comma (e.g. abcdef@microsoft.com,ghijklm@microsoft.com)"
type = list(string)
default = []
}
variable "apply_approval_team_creation_enabled" {
description = "Controls whether to create a team for approvals."
type = bool
default = true
}
variable "apply_approval_existing_team_name" {
description = "The name of an existing team to use for approvals. Only required if 'apply_approval_team_creation_enabled' is 'false'. If this is left null and `apply_approval_team_creation_enabled` is `false`, the module will not set any team for approvals."
type = string
default = null
}
variable "create_branch_policies" {
description = "Controls whether to create branch policies for the repositories"
type = bool
default = true
}
variable "built_in_configuration_file_names" {
description = "Built-in configuration file name"
type = list(string)
default = ["config.yaml", "config-hub-and-spoke-vnet.yaml", "config-virtual-wan.yaml"]
}
variable "module_folder_path_relative" {
description = "Whether the module folder path is relative to the bootstrap module"
type = bool
default = false
}
variable "resource_names" {
type = map(string)
description = "Overrides for resource names"
default = {
resource_group_state = "rg-{{service_name}}-{{environment_name}}-state-{{azure_location}}-{{postfix_number}}"
resource_group_identity = "rg-{{service_name}}-{{environment_name}}-identity-{{azure_location}}-{{postfix_number}}"
resource_group_agents = "rg-{{service_name}}-{{environment_name}}-agents-{{azure_location}}-{{postfix_number}}"
resource_group_network = "rg-{{service_name}}-{{environment_name}}-network-{{azure_location}}-{{postfix_number}}"
user_assigned_managed_identity_plan = "id-{{service_name}}-{{environment_name}}-{{azure_location}}-plan-{{postfix_number}}"
user_assigned_managed_identity_apply = "id-{{service_name}}-{{environment_name}}-{{azure_location}}-apply-{{postfix_number}}"
user_assigned_managed_identity_federated_credentials_prefix = "{{service_name}}-{{environment_name}}-{{azure_location}}-{{postfix_number}}"
storage_account = "sto{{service_name_short}}{{environment_name_short}}{{azure_location_short}}{{postfix_number}}{{random_string}}"
storage_container = "{{environment_name}}-tfstate"
container_instance_01 = "aci-{{service_name}}-{{environment_name}}-{{azure_location}}-{{postfix_number}}"
container_instance_02 = "aci-{{service_name}}-{{environment_name}}-{{azure_location}}-{{postfix_number_plus_1}}"
container_instance_managed_identity = "id-{{service_name}}-{{environment_name}}-{{azure_location}}-{{postfix_number}}-aci"
runner_01 = "runner-{{service_name}}-{{environment_name}}-{{postfix_number}}"
runner_02 = "runner-{{service_name}}-{{environment_name}}-{{postfix_number_plus_1}}"
version_control_system_repository = "{{service_name}}-{{environment_name}}"
version_control_system_repository_templates = "{{service_name}}-{{environment_name}}-templates"
version_control_system_environment_plan = "{{service_name}}-{{environment_name}}-plan"
version_control_system_environment_apply = "{{service_name}}-{{environment_name}}-apply"
version_control_system_team = "{{service_name}}-{{environment_name}}-approvers"
version_control_system_runner_group = "{{service_name}}-{{environment_name}}"
virtual_network = "vnet-{{service_name}}-{{environment_name}}-{{azure_location}}-{{postfix_number}}"
public_ip = "pip-{{service_name}}-{{environment_name}}-{{azure_location}}-{{postfix_number}}"
nat_gateway = "nat-{{service_name}}-{{environment_name}}-{{azure_location}}-{{postfix_number}}"
subnet_container_instances = "subnet-{{service_name}}-{{environment_name}}-{{azure_location}}-{{postfix_number}}-aci"
subnet_private_endpoints = "subnet-{{service_name}}-{{environment_name}}-{{azure_location}}-{{postfix_number}}-pe"
storage_account_private_endpoint = "pe-{{service_name}}-{{environment_name}}-{{azure_location}}-sto-{{postfix_number}}"
container_registry = "acr{{service_name}}{{environment_name}}{{azure_location_short}}{{postfix_number}}{{random_string}}"
container_registry_private_endpoint = "pe-{{service_name}}-{{environment_name}}-{{azure_location}}-acr-{{postfix_number}}"
container_image_name = "github-runner"
}
}
variable "runner_container_image_repository" {
description = "The container image repository to use for GitHub Runner"
type = string
default = "https://github.com/Azure/avm-container-images-cicd-agents-and-runners"
}
variable "runner_container_image_tag" {
description = "The container image tag to use for GitHub Runner"
type = string
default = "39b9059"
}
variable "runner_container_image_folder" {
description = "The folder containing the Dockerfile for the container image"
type = string
default = "github-runner-aci"
}
variable "runner_container_image_dockerfile" {
description = "The Dockerfile to use for the container image"
type = string
default = "dockerfile"
}
variable "runner_container_cpu" {
description = "The container cpu default"
type = number
default = 2
}
variable "runner_container_memory" {
description = "The container memory default"
type = number
default = 4
}
variable "runner_container_cpu_max" {
description = "The container cpu default"
type = number
default = 2
}
variable "runner_container_memory_max" {
description = "The container memory default"
type = number
default = 4
}
variable "runner_container_zone_support" {
description = "The container zone support"
type = bool
default = true
}
variable "runner_name_environment_variable" {
description = "The runner name environment variable supplied to the container"
type = string
default = "GH_RUNNER_NAME"
}
variable "runner_group_environment_variable" {
description = "The runner group environment variable supplied to the container"
type = string
default = "GH_RUNNER_GROUP"
}
variable "runner_organization_environment_variable" {
description = "The runner url environment variable supplied to the container"
type = string
default = "GH_RUNNER_URL"
}
variable "runner_token_environment_variable" {
description = "The runner token environment variable supplied to the container"
type = string
default = "GH_RUNNER_TOKEN"
}
variable "default_runner_group_name" {
description = "The default runner group name for unlicenses orgs"
type = string
default = "Default"
}
variable "virtual_network_address_space" {
type = string
description = "The address space for the virtual network"
default = "10.0.0.0/24"
}
variable "virtual_network_subnet_address_prefix_container_instances" {
type = string
description = "Address prefix for the virtual network subnet"
default = "10.0.0.0/26"
}
variable "virtual_network_subnet_address_prefix_private_endpoints" {
type = string
description = "Address prefix for the virtual network subnet"
default = "10.0.0.64/26"
}
variable "additional_files" {
description = "Additional files to upload to the repository. This must be specified as a comma-separated list of absolute file paths (e.g. c:\\config\\config.yaml or /home/user/config/config.yaml)"
type = list(string)
default = []
}
variable "additional_folders_path" {
description = "Additional folders to upload to the repository. This must be specified as a comma-separated list of absolute paths (e.g. c:\\templates\\Microsoft_Cloud_for_Industry\\Common or /templates/Microsoft_Cloud_for_Industry/Common)"
type = list(string)
default = []
}
variable "storage_account_replication_type" {
description = "Controls the redundancy for the storage account"
type = string
default = "ZRS"
}
variable "bicep_config_file_path" {
type = string
default = "accelerator/.config/ALZ-Powershell-Auto.config.json"
}
variable "bicep_parameters_file_path" {
type = string
default = "parameters.json"
}
variable "custom_role_definitions_terraform" {
description = "Custom role definitions to create for Terraform"
type = map(object({
name = string
description = string
permissions = object({
actions = list(string)
not_actions = list(string)
})
}))
default = {
alz_managment_group_contributor = {
name = "Azure Landing Zones Management Group Contributor ({{service_name}}-{{environment_name}})"
description = "This is a custom role created by the Azure Landing Zones Accelerator for Writing the Management Group Structure."
permissions = {
actions = [
"Microsoft.Management/managementGroups/delete",
"Microsoft.Management/managementGroups/read",
"Microsoft.Management/managementGroups/subscriptions/delete",
"Microsoft.Management/managementGroups/subscriptions/write",
"Microsoft.Management/managementGroups/write",
"Microsoft.Management/managementGroups/subscriptions/read",
"Microsoft.Management/managementGroups/settings/read",
"Microsoft.Management/managementGroups/settings/write",
"Microsoft.Management/managementGroups/settings/delete",
"Microsoft.Authorization/policyDefinitions/write",
"Microsoft.Authorization/policySetDefinitions/write",
"Microsoft.Authorization/policyAssignments/write",
"Microsoft.Authorization/roleDefinitions/write",
"Microsoft.Authorization/*/read",
"Microsoft.Resources/deployments/write",
"Microsoft.Resources/deployments/exportTemplate/action",
"Microsoft.Authorization/roleAssignments/write",
"Microsoft.Authorization/roleAssignments/delete",
"Microsoft.Insights/diagnosticSettings/write"
]
not_actions = []
}
}
alz_managment_group_reader = {
name = "Azure Landing Zones Management Group Reader ({{service_name}}-{{environment_name}})"
description = "This is a custom role created by the Azure Landing Zones Accelerator for Reading the Management Group Structure."
permissions = {
actions = [
"Microsoft.Management/managementGroups/read",
"Microsoft.Management/managementGroups/subscriptions/read",
"Microsoft.Management/managementGroups/settings/read",
"Microsoft.Authorization/*/read",
"Microsoft.Resources/deployments/write",
"Microsoft.Resources/deployments/exportTemplate/action"
]
not_actions = []
}
}
alz_subscription_owner = {
name = "Azure Landing Zones Subscription Owner ({{service_name}}-{{environment_name}})"
description = "This is a custom role created by the Azure Landing Zones Accelerator for Writing in platform subscriptions."
permissions = {
actions = [
"*",
"Microsoft.Resources/deployments/write",
"Microsoft.Resources/deployments/exportTemplate/action"
]
not_actions = []
}
}
alz_subscription_reader = {
name = "Azure Landing Zones Subscription Reader ({{service_name}}-{{environment_name}})"
description = "This is a custom role created by the Azure Landing Zones Accelerator for Reading the platform subscriptions."
permissions = {
actions = [
"*/read",
"Microsoft.Resources/deployments/write",
"Microsoft.Resources/deployments/exportTemplate/action"
]
not_actions = []
}
}
}
}
variable "custom_role_definitions_bicep" {
description = "Custom role definitions to create for Bicep"
type = map(object({
name = string
description = string
permissions = object({
actions = list(string)
not_actions = list(string)
})
}))
default = {
alz_managment_group_contributor = {
name = "Azure Landing Zones Management Group Contributor ({{service_name}}-{{environment_name}})"
description = "This is a custom role created by the Azure Landing Zones Accelerator for Writing the Management Group Structure."
permissions = {
actions = [
"Microsoft.Management/managementGroups/delete",
"Microsoft.Management/managementGroups/read",
"Microsoft.Management/managementGroups/subscriptions/delete",
"Microsoft.Management/managementGroups/subscriptions/write",
"Microsoft.Management/managementGroups/settings/read",
"Microsoft.Management/managementGroups/settings/write",
"Microsoft.Management/managementGroups/settings/delete",
"Microsoft.Management/managementGroups/write",
"Microsoft.Management/managementGroups/subscriptions/read",
"Microsoft.Authorization/policyDefinitions/write",
"Microsoft.Authorization/policySetDefinitions/write",
"Microsoft.Authorization/policyAssignments/write",
"Microsoft.Authorization/roleDefinitions/write",
"Microsoft.Authorization/*/read",
"Microsoft.Resources/deployments/whatIf/action",
"Microsoft.Resources/deployments/write",
"Microsoft.Resources/deployments/validate/action",
"Microsoft.Resources/deployments/read",
"Microsoft.Resources/deployments/operationStatuses/read",
"Microsoft.Authorization/roleAssignments/write",
"Microsoft.Authorization/roleAssignments/delete",
"Microsoft.Insights/diagnosticSettings/write"
]
not_actions = []
}
}
alz_managment_group_reader = {
name = "Azure Landing Zones Management Group What If ({{service_name}}-{{environment_name}})"
description = "This is a custom role created by the Azure Landing Zones Accelerator for running Bicep What If for the Management Group Structure."
permissions = {
actions = [
"Microsoft.Management/managementGroups/read",
"Microsoft.Management/managementGroups/subscriptions/read",
"Microsoft.Management/managementGroups/settings/read",
"Microsoft.Authorization/*/read",
"Microsoft.Authorization/policyDefinitions/write",
"Microsoft.Authorization/policySetDefinitions/write",
"Microsoft.Authorization/roleDefinitions/write",
"Microsoft.Authorization/policyAssignments/write",
"Microsoft.Insights/diagnosticSettings/write",
"Microsoft.Insights/diagnosticSettings/read",
"Microsoft.Resources/deployments/whatIf/action",
"Microsoft.Resources/deployments/write"
]
not_actions = []
}
}
alz_subscription_owner = {
name = "Azure Landing Zones Subscription Owner ({{service_name}}-{{environment_name}})"
description = "This is a custom role created by the Azure Landing Zones Accelerator for Writing in platform subscriptions."
permissions = {
actions = [
"*",
"Microsoft.Resources/deployments/whatIf/action",
"Microsoft.Resources/deployments/write"
]
not_actions = []
}
}
alz_subscription_reader = {
name = "Azure Landing Zones Subscription What If ({{service_name}}-{{environment_name}})"
description = "This is a custom role created by the Azure Landing Zones Accelerator for running Bicep What If for the platform subscriptions."
permissions = {
actions = [
"*/read",
"Microsoft.Resources/subscriptions/resourceGroups/write",
"Microsoft.ManagedIdentity/userAssignedIdentities/write",
"Microsoft.Automation/automationAccounts/write",
"Microsoft.OperationalInsights/workspaces/write",
"Microsoft.OperationalInsights/workspaces/linkedServices/write",
"Microsoft.OperationsManagement/solutions/write",
"Microsoft.Insights/dataCollectionRules/write",
"Microsoft.Authorization/locks/write",
"Microsoft.Network/*/write",
"Microsoft.Resources/deployments/whatIf/action",
"Microsoft.Resources/deployments/write",
"Microsoft.SecurityInsights/onboardingStates/write"
]
not_actions = []
}
}
}
}
variable "role_assignments_terraform" {
description = "Role assignments to create for Terraform"
type = map(object({
custom_role_definition_key = string
user_assigned_managed_identity_key = string
scope = string
}))
default = {
plan_management_group = {
custom_role_definition_key = "alz_managment_group_reader"
user_assigned_managed_identity_key = "plan"
scope = "management_group"
}
apply_management_group = {
custom_role_definition_key = "alz_managment_group_contributor"
user_assigned_managed_identity_key = "apply"
scope = "management_group"
}
plan_subscription = {
custom_role_definition_key = "alz_subscription_reader"
user_assigned_managed_identity_key = "plan"
scope = "subscription"
}
apply_subscription = {
custom_role_definition_key = "alz_subscription_owner"
user_assigned_managed_identity_key = "apply"
scope = "subscription"
}
}
}
variable "role_assignments_bicep" {
description = "Role assignments to create for Bicep"
type = map(object({
custom_role_definition_key = string
user_assigned_managed_identity_key = string
scope = string
}))
default = {
plan_management_group = {
custom_role_definition_key = "alz_managment_group_reader"
user_assigned_managed_identity_key = "plan"
scope = "management_group"
}
apply_management_group = {
custom_role_definition_key = "alz_managment_group_contributor"
user_assigned_managed_identity_key = "apply"
scope = "management_group"
}
plan_subscription = {
custom_role_definition_key = "alz_subscription_reader"
user_assigned_managed_identity_key = "plan"
scope = "subscription"
}
apply_subscription = {
custom_role_definition_key = "alz_subscription_owner"
user_assigned_managed_identity_key = "apply"
scope = "subscription"
}
}
}
variable "architecture_definition_name" {
type = string
description = "Name of the architecture definition use by Microsoft Cloud for Industry"
default = null
}
variable "root_module_folder_relative_path" {
type = string
description = "The root module folder path"
default = "."
}
variable "architecture_definition_template_path" {
type = string
default = ""
description = "The path to the architecture definition template file to use."
}
variable "architecture_definition_override_path" {
type = string
default = ""
description = "The path to the architecture definition file to use instead of the default."
}
variable "apply_alz_archetypes_via_architecture_definition_template" {
type = bool
default = true
description = "Toggles assignment of ALZ policies. True to deploy, otherwise false. (e.g true)"
}