-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathvariables.interface.tf
More file actions
71 lines (61 loc) · 2.08 KB
/
Copy pathvariables.interface.tf
File metadata and controls
71 lines (61 loc) · 2.08 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
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
}