-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvariables-tags.tf
41 lines (35 loc) · 993 Bytes
/
variables-tags.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 "default_tags_enabled" {
description = "Option to enable or disable default tags."
type = bool
default = true
}
variable "nic_extra_tags" {
description = "Extra tags to set on the network interface."
type = map(string)
default = {}
}
variable "public_ip_extra_tags" {
description = "Extra tags to set on the public IP resource."
type = map(string)
default = {}
}
variable "extra_tags" {
description = "Extra tags to set on each created resource."
type = map(string)
default = {}
}
variable "os_disk_extra_tags" {
description = "Extra tags to set on the OS disk."
type = map(string)
default = {}
}
variable "os_disk_tagging_enabled" {
description = "Should OS disk tagging be enabled? Defaults to `true`."
type = bool
default = true
}
variable "extensions_extra_tags" {
description = "Extra tags to set on the VM extensions."
type = map(string)
default = {}
}