feat: show proposed secret version changes during deploy
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
3wc
2025-09-09 17:34:06 -04:00
parent 5bb6241172
commit 2b64b97706
6 changed files with 94 additions and 29 deletions

View File

@ -192,7 +192,7 @@ checkout as-is. Recipe commit hashes are also supported as values for
}
// Gather secrets
secretInfo, err := deploy.GatherSecretsForDeploy(cl, app)
secretInfo, err := deploy.GatherSecretsForDeploy(cl, app, internal.ShowUnchanged)
if err != nil {
log.Fatal(err)
}

View File

@ -186,7 +186,7 @@ beforehand. See "abra app backup" for more.`),
appPkg.SetUpdateLabel(compose, stackName, app.Env)
// Gather secrets
secretInfo, err := deploy.GatherSecretsForDeploy(cl, app)
secretInfo, err := deploy.GatherSecretsForDeploy(cl, app, internal.ShowUnchanged)
if err != nil {
log.Fatal(err)
}

View File

@ -212,7 +212,7 @@ beforehand. See "abra app backup" for more.`),
}
// Gather secrets
secretInfo, err := deploy.GatherSecretsForDeploy(cl, app)
secretInfo, err := deploy.GatherSecretsForDeploy(cl, app, internal.ShowUnchanged)
if err != nil {
log.Fatal(err)
}