blob: ed4ecc007d019d7a363a9b41cbcb6a2bf581a3c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
variable "vault_provider_address" {
description = "Vault cluster address."
type = string
default = "vault.service.consul:8200"
}
variable "vault_provider_skip_tls_verify" {
description = "Verification of the Vault server's TLS certificate"
type = bool
default = false
}
variable "vault_provider_token" {
description = "Vault root token"
type = string
sensitive = true
}
|