-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
32 lines (26 loc) · 824 Bytes
/
variables.tf
File metadata and controls
32 lines (26 loc) · 824 Bytes
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
variable "subscription_id_management" {
description = "The subscription ID for the management resource group"
type = string
}
variable "subscription_id_connectivity" {
description = "The subscription ID for the connectivity resource group"
type = string
}
variable "subscription_id_identity" {
description = "The subscription ID for the identity resource group"
type = string
}
variable "location" {
description = "The Azure region where resources will be deployed"
type = string
}
variable "email_security_contact" {
description = "The email address to use for security alerts"
type = string
default = "replace_me@replace_me.com"
}
variable "tags" {
description = "A map of tags to assign to resources"
type = map(string)
default = null
}