-
Notifications
You must be signed in to change notification settings - Fork 7
/
variables-naming.tf
53 lines (45 loc) · 1.16 KB
/
variables-naming.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
48
49
50
51
52
53
variable "name_prefix" {
description = "Prefix for generated resources names."
type = string
default = ""
}
variable "name_suffix" {
description = "Suffix for the generated resources names."
type = string
default = ""
}
variable "name_slug" {
description = "Slug to use with the generated resources names."
type = string
default = ""
}
variable "custom_vwan_name" {
description = "Custom Virtual Wan's name."
type = string
default = null
}
variable "custom_virtual_hub_name" {
description = "Custom Virtual Hub's name"
type = string
default = null
}
variable "custom_express_route_gateway_name" {
description = "Custom ExpressRoute Gateway name"
type = string
default = null
}
variable "custom_express_route_circuit_name" {
description = "Custom ExpressRoute Circuit name"
type = string
default = null
}
variable "custom_firewall_name" {
description = "Custom Firewall's name"
type = string
default = null
}
variable "custom_vpn_gateway_name" {
description = "Custom name for the VPN Gateway"
type = string
default = null
}