-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvariables-naming.tf
55 lines (47 loc) · 1.34 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
54
55
# 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 name for the Virtual Machine. Generated if not set."
type = string
default = ""
}
variable "computer_name" {
description = "Custom name for the Virtual Machine Hostname. `vm_name` if not set."
type = string
default = ""
}
variable "public_ip_custom_name" {
description = "Custom name for Public IP. Generated if not set."
type = string
default = null
}
variable "nic_custom_name" {
description = "Custom name for the NIC interface. Generated if not set."
type = string
default = null
}
variable "ip_configuration_custom_name" {
description = "Custom name for the IP config of the NIC. Generated if not set."
type = string
default = null
}
variable "os_disk_custom_name" {
description = "Custom name for OS disk. Generated if not set."
type = string
default = null
}
variable "dcr_custom_name" {
description = "Custom name for Data collection rule association."
type = string
default = null
}