open-nomad/e2e/terraform/config/full-cluster/vault/server/vault.hcl
Tim Gross 727277793b
e2e: bootstrap vault and provision Nomad with vault tokens (#9010)
Provisions vault with the policies described in the Nomad Vault integration
guide, and drops a configuration file for Nomad vault server configuration
with its token. The vault root token is exposed to the E2E runner so that
tests can write additional policies to vault.
2020-10-05 09:28:37 -04:00

16 lines
433 B
HCL

listener "tcp" {
address = "0.0.0.0:8200"
tls_disable = 1
}
# this autounseal key is created by Terraform in the E2E infrastructure repo
# and should be used only for these tests
seal "awskms" {
region = "us-east-1"
kms_key_id = "74b7e226-c745-4ddd-9b7f-2371024ee37d"
}
# Vault 1.5.4 doesn't have autodiscovery for retry_join on its
# integrated storage yet so we'll just use consul for storage
storage "consul" {}