-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
32 lines (32 loc) · 1.11 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
variable "virtual_network_name" {
description = "The name of the virtual network. Changing this forces a new resource to be created."
type = string
sensitive = false
}
variable "azure_location" {
description = "The location/region where the virtual network is created. Changing this forces a new resource to be created."
type = string
sensitive = false
}
variable "resource_group_name" {
description = "The name of the resource group in which to create the virtual network. Changing this forces a new resource to be created."
type = string
sensitive = false
}
variable "virtual_network_cidr" {
description = "The address space that is used the virtual network. You can supply more than one address space."
type = list(string)
sensitive = false
}
variable "virtual_network_dns" {
description = "List of IP addresses of DNS servers"
type = list(string)
sensitive = false
default = []
}
variable "virtual_network_tags" {
description = "A mapping of tags to assign to the resource."
type = map(string)
sensitive = false
default = {}
}