open-nomad/e2e/terraform/config/dev-cluster/vault/server/vault.hcl
Tim Gross a47b1c1081
e2e: move configurations into profile-specific directories (#8828)
This changeset stages upcoming E2E provisioning improvements work. It splits
the existing shared configuration directory into 3 profiles:

* "full-cluster": the set of configurations currently in use
* "dev-cluster": a simplified set of mostly existing configurations that
  weren't in use.
* "custom": an empty profile for developers to keep non-standard
  configurations during complex feature development.

The tooling to switch between profiles will be in a later changeset.

Also drops some unused configuration knobs from the provisioning scripts to
make the next stage of work easier.
2020-09-04 11:23:32 -04:00

13 lines
329 B
HCL

backend "consul" {
path = "vault/"
address = "{{ GetPrivateIP }}:8500"
cluster_addr = "https://{{ GetPrivateIP }}:8201"
redirect_addr = "http://{{ GetPrivateIP }}:8200"
}
listener "tcp" {
address = "{{ GetPrivateIP }}:8200"
cluster_address = "{{ GetPrivateIP }}:8201"
tls_disable = 1
}