-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
38 lines (33 loc) · 894 Bytes
/
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
variable "resource_group" {
description = "The name of the resource group in which to create the resources."
type = object({
name = string
})
default = {
name = null
}
nullable = false
}
variable "location" {
description = "Location used for the resource group and in some Private DNS Zones"
type = string
}
variable "shortlocation" {
description = "shortcode of the location used in some Private DNS Zones"
type = string
}
variable "tags" {
description = "A map of tags to assign to the resources."
type = map(string)
default = {}
}
variable "additional_zones" {
description = "Additional Private DNS Zones to create"
type = list(string)
default = []
}
variable "virtual_network_id" {
description = "The ID of the virtual network to link the Private DNS Zones to"
type = string
default = null
}