-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
47 lines (40 loc) · 1.01 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
variable "resource_group_name" {
type = string
description = "Name of the resource group where resources should be deployed."
}
variable "location" {
type = string
description = "Region / Location"
}
variable "vnet_name" {
type = string
description = "Virtual Network Name"
}
variable "vnet_address_space" {
type = list(string)
description = "List of all virtual network addresses"
}
variable "dns_servers" {
type = list(string)
description = "List to define Custom DNS Servers"
default = []
}
variable "ddos_protection_plan" {
description = "Configures DDos Protection Plan on the Virtual Network"
type = set(object(
{
ddos_protection_plan_id = string
enable_ddos_protection_plan = bool
}
))
default = []
}
variable "subnets" {
description = "A block to define one or more subnets within the module."
default = {}
}
variable "tags" {
type = map(string)
description = "(Optional) Resource tagging"
default = {}
}