-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
35 lines (28 loc) · 947 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
# -----------------------------------------------------------------------
# Global variables
# -----------------------------------------------------------------------
# Set TF_VAR_docker_host to override this
# tcp with hostname example:
# export TF_VAR_docker_host="tcp://docker:2345"
variable "docker_host" {
default = "unix:///var/run/docker.sock"
}
# -----------------------------------------------------------------------
# Vault variables
# -----------------------------------------------------------------------
# Set TF_VAR_vault_version to override this
variable "vault_version" {
default = "latest"
}
# Set TF_VAR_vault_edition to override this
variable "vault_edition" {
default = "vault"
}
# Set TF_VAR_vault_license to override this
variable "vault_license" {
default = "https://www.hashicorp.com/products/vault/pricing"
}
# Set TF_VAR_vault_log_level to override this
variable "vault_log_level" {
default = "info"
}