-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables-naming.tf
41 lines (35 loc) · 975 Bytes
/
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
variable "name_prefix" {
description = "Optional prefix for the generated name."
type = string
default = ""
}
variable "name_suffix" {
description = "Optional suffix for the generated name."
type = string
default = ""
}
variable "circuit_custom_name" {
description = "Custom ExpressRoute Circuit resource name."
type = string
default = null
}
variable "gateway_custom_name" {
description = "Custom ExpressRoute Gateway resource name."
type = string
default = null
}
variable "public_ip_custom_name" {
description = "Custom public IP resource name."
type = string
default = null
}
variable "gateway_ipconfig_custom_name" {
description = "Custom ExpressRoute Gateway IP config name."
type = string
default = null
}
variable "connection_custom_name" {
description = "Custom ExpressRoute Gateway Connection resource name."
type = string
default = null
}