-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables-naming.tf
37 lines (32 loc) · 973 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
# Generic naming variables
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 = ""
}
# Custom naming override
variable "custom_name" {
description = "Custom Private Endpoint name, generated if not set."
type = string
default = ""
}
variable "nic_custom_name" {
description = "Custom network interface name of the Private Endpoint, generated by Azure if not set."
type = string
default = null
}
variable "private_dns_zone_group_custom_name" {
description = "Custom Private DNS Zone Group name, generated if not set."
type = string
default = ""
}
variable "private_service_connection_custom_name" {
description = "Custom Private Service Connection name, generated if not set."
type = string
default = ""
}