-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
93 lines (77 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
variable "name" {
description = "Application name."
type = string
}
variable "location" {
description = "Azure location where resources are to be created."
type = string
}
variable "resource_group_name" {
description = "Azure resource group where resources are to be created."
type = string
}
variable "vault_image" {
description = "Vault container image to run."
type = string
default = "vault:1.6.1"
}
variable "vault_ui" {
description = "Enable Vault UI."
type = bool
default = false
}
variable "vault_api_addr" {
description = "Full HTTP endpoint of Vault Server if using a custom domain name. Leave blank otherwise."
type = string
default = ""
}
variable "vault_key_vault_tier" {
description = "Azure KeyVault service tier (Standard or Premium)."
type = string
default = "Standard"
}
variable "vault_key_name" {
description = "Azure KeyVault key name."
type = string
default = "vault-key"
}
variable "vault_key_type" {
description = "Azure KeyVault cryptographic key type."
type = string
default = "RSA"
}
variable "vault_key_size" {
description = "Azure KeyVault cryptographic key size."
type = number
default = 2048
}
variable "vault_service_plan_tier" {
description = "Azure App Service Plan tier (Free, Basic, Standard, PremiumV2)."
type = string
default = "Free"
}
variable "vault_service_plan_size" {
description = "Azure App Service Plan size."
type = string
default = "F1"
}
variable "vault_continuous_deployment" {
description = "Enable continuous deployment of new container tags (e.g. latest)."
type = bool
default = false
}
variable "vault_storage_account_kind" {
description = "Azure Storage kind."
type = string
default = "Storage"
}
variable "vault_storage_account_tier" {
description = "Azure Storage tier."
type = string
default = "Standard"
}
variable "vault_storage_account_replication" {
description = "Azure Storage replication type."
type = string
default = "LRS"
}