Skip to content

Commit

Permalink
all: fix vault certs calls
Browse files Browse the repository at this point in the history
Signed-off-by: Alexis Pentori <[email protected]>
  • Loading branch information
apentori committed Jan 20, 2025
1 parent 03d3e06 commit 3549922
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ansible/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ validator_client_consul_failures_before_warning: '{{ beacon_node_consul_failure
validator_client_consul_failures_before_critical: '{{ beacon_node_consul_failures_before_critical }}'

# Vault certificate
bootstrap__vault_ca_cert: '{{ lookup(passwordstore, services/vault/certs/root-ca/cert returnall=true)}}'
bootstrap__vault_client_cert: '{{ lookup(passwordstore, services/vault/certs/client-host/cert returnall=true)}}'
bootstrap__vault_client_key: '{{ lookup(passwordstore, services/vault/certs/client-host/privkey returnall=true)}}'
bootstrap__vault_ca_cert: '{{ lookup("passwordstore", "services/vault/certs/root-ca/cert returnall=true")}}'
bootstrap__vault_client_cert: '{{ lookup("passwordstore", "services/vault/certs/client-host/cert returnall=true")}}'
bootstrap__vault_client_key: '{{ lookup("passwordstore", "services/vault/certs/client-host/privkey returnall=true")}}'

0 comments on commit 3549922

Please sign in to comment.