-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
40 lines (33 loc) · 892 Bytes
/
Copy pathvariables.tf
File metadata and controls
40 lines (33 loc) · 892 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
33
34
35
36
37
38
39
40
variable "required_ddos_protection_plan" {
description = "Set to true if DDOS Protection Plan is required"
type = bool
default = false
}
variable "ddos_protection_plan_name" {
description = "DDOS Protection Plan name"
type = string
default = ""
}
variable "location" {
description = "Virtual Network resources Location"
type = string
}
variable "resource_group_name" {
description = "Virtual Network resource group name"
type = string
}
variable "vnet_name" {
description = "Virtual Network name"
type = string
}
variable "address_space" {
description = "Virtual Network address space"
}
variable "dns_servers" {
description = "Virtual Network associated DNS Servers"
default = null
}
variable "tags" {
description = "A mapping of tags which should be assigned to the Virtual Network"
default = {}
}