This repository has been archived by the owner on Jun 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
77 lines (63 loc) · 2.11 KB
/
variables.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
variable "resource_group_name" {
description = "A container that holds related resources for an Azure solution"
default = ""
}
variable "key_vault_name" {
description = "The Name of the key vault"
default = ""
}
variable "key_vault_sku_pricing_tier" {
description = "The name of the SKU used for the Key Vault. The options are: `standard`, `premium`."
default = "standard"
}
variable "enabled_for_deployment" {
description = "Allow Virtual Machines to retrieve certificates stored as secrets from the key vault."
default = true
}
variable "enabled_for_disk_encryption" {
description = "Allow Disk Encryption to retrieve secrets from the vault and unwrap keys."
default = true
}
variable "enabled_for_template_deployment" {
description = "Allow Resource Manager to retrieve secrets from the key vault."
default = true
}
variable "enable_soft_delete" {
description = " Should Soft Delete be enabled for this Key Vault?"
default = true
}
variable "enable_purge_protection" {
description = "Is Purge Protection enabled for this Key Vault?"
default = false
}
variable "access_policies" {
description = "List of access policies for the Key Vault."
default = []
}
variable "network_acls" {
description = "Network rules to apply to key vault."
type = object({ bypass = string, default_action = string, ip_rules = list(string), virtual_network_subnet_ids = list(string) })
default = null
}
variable "secrets" {
type = map(string)
description = "A map of secrets for the Key Vault."
default = {}
}
variable "log_analytics_workspace_id" {
description = "Specifies the ID of a Log Analytics Workspace where Diagnostics Data to be sent"
default = null
}
variable "azure_monitor_logs_retention_in_days" {
description = "The Azure Monitoring data retention in days."
default = 30
}
variable "storage_account_id" {
description = "The name of the storage account to store the all monitoring logs"
default = null
}
variable "tags" {
description = "A map of tags to add to all resources"
type = map(string)
default = {}
}