mirror of
https://github.com/status-im/infra-status.git
synced 2025-01-11 14:34:13 +00:00
10 lines
469 B
Plaintext
10 lines
469 B
Plaintext
export VAULT_CACERT=./ansible/files/vault-ca.crt
|
|
export VAULT_CLIENT_CERT=./ansible/files/vault-client-user.crt
|
|
export VAULT_CLIENT_KEY=./ansible/files/vault-client-user.key
|
|
export VAULT_ADDR=https://vault-api.infra.status.im:8200
|
|
export CONSUL_HTTP_TOKEN=$(pass services/consul/tokens/terraform)
|
|
# Provide a script in your PATH matching this name to load the token.
|
|
if command -v vault_token_provider >/dev/null; then
|
|
export VAULT_TOKEN=$(vault_token_provider)
|
|
fi
|