-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
52 lines (43 loc) · 1018 Bytes
/
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
variable "ARM_SUBSCRIPTION_ID" {
description = "Azure subscription ID"
sensitive = true
}
variable "ARM_CLIENT_ID" {
description = "Azure client ID"
sensitive = true
}
variable "ARM_CLIENT_SECRET" {
description = "Azure client secret"
sensitive = true
}
variable "ARM_TENANT_ID" {
description = "Azure tenant ID"
sensitive = true
}
variable "resource_group_name" {
description = "Name of the existing Resource Group"
type = string
}
variable "location" {
description = "Location of the Key Vault"
type = string
}
variable "keyvault_name" {
description = "Name of the Key Vault"
type = string
}
variable "keyvault_sku_name" {
description = "SKU name of the Key Vault"
type = string
}
variable "soft_delete_enabled" {
description = "Soft delete enabled"
type = bool
}
variable "tags" {
description = "List of maps containing tag key-value pairs"
type = list(object({
tag_key = string
tag_value = string
}))
}