-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
62 lines (51 loc) · 1.52 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
variable "name" {
type = string
description = "The name of your Key Vault"
}
variable "env" {
type = string
description = "The environment to deploy to"
}
variable "location" {
type = string
default = "uksouth"
}
variable "resource_group_name" {
type = string
description = "The resource group your Key Vault will be assigned to"
}
variable "product" {
type = string
description = "The product name"
}
variable "purge_protection_enabled" {
default = true
}
variable "sku" {
default = "standard"
description = "The Name of the SKU used for this Key Vault. Possible values are standard and premium."
}
variable "network_acls_default_action" {
description = "(Required) The Default Action to use when no rules match from ip_rules / virtual_network_subnet_ids. Possible values are Allow and Deny."
default = "Allow"
}
variable "network_acls_ip_rules" {
description = "(Optional) One or more IP Addresses, or CIDR Blocks which should be able to access the Key Vault."
type = list(string)
default = []
}
variable "network_acls_allowed_subnet_ids" {
description = "(Optional) One or more Subnet IDs which should be able to access this Key Vault."
type = list(string)
default = []
}
variable "service_team_name" {
description = "The name of the Service Team e.g. MHPD"
type = string
default = ""
}
variable "service_team_object_id" {
description = "The Entra object id for the Service Team"
type = string
default = ""
}