Skip to content

Commit

Permalink
fix vault port (#619)
Browse files Browse the repository at this point in the history
  • Loading branch information
jarededwards authored Oct 26, 2022
1 parent 7fd05c6 commit 5782654
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/k3d/secrets.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ func AddK3DSecrets(dryrun bool) error {
"TF_VAR_email_address": []byte(viper.GetString("adminemail")),
"TF_VAR_github_token": []byte(viper.GetString("github.token")),
"TF_VAR_kubefirst_bot_ssh_public_key": []byte(viper.GetString("botpublickey")),
"TF_VAR_vault_addr": []byte("http://vault.vault.svc.cluster.local:443"),
"TF_VAR_vault_addr": []byte("http://vault.vault.svc.cluster.local:8200"),
"TF_VAR_vault_token": []byte("k1_local_vault_token"),
"VAULT_ADDR": []byte("http://vault.vault.svc.cluster.local:443"),
"VAULT_ADDR": []byte("http://vault.vault.svc.cluster.local:8200"),
"VAULT_TOKEN": []byte("k1_local_vault_token"),
}
atlantisSecret := &v1.Secret{
Expand Down

0 comments on commit 5782654

Please sign in to comment.