-
Notifications
You must be signed in to change notification settings - Fork 9
/
variables-tags.tf
53 lines (45 loc) · 1.32 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
variable "default_tags_enabled" {
description = "Whether the default tags are enabled."
type = bool
default = true
}
variable "extra_tags" {
description = "Extra tags to add."
type = map(string)
default = {}
}
variable "key_vault_extra_tags" {
description = "Extra tags to add to the Key Vault."
type = map(string)
default = {}
}
variable "automation_account_extra_tags" {
description = "Extra tags to add to Automation Account."
type = map(string)
default = {}
}
variable "log_analytics_workspace_extra_tags" {
description = "Extra tags to add to the Log Analytics Workspace."
type = map(string)
default = {}
}
variable "logs_storage_account_extra_tags" {
description = "Extra tags to add to the logs Storage Account."
type = map(string)
default = {}
}
variable "monitoring_function_extra_tags" {
description = "Extra tags to add to the monitoring function."
type = map(string)
default = {}
}
variable "recovery_vault_extra_tags" {
description = "Extra tags to add to Recovery Vault."
type = map(string)
default = {}
}
variable "backup_vault_extra_tags" {
description = "Extra tags to add to Backup Vault."
type = map(string)
default = {}
}