Skip to content

Commit

Permalink
Updated creation sequence to ensure secrets are created before creati…
Browse files Browse the repository at this point in the history
…ng the deployment.
  • Loading branch information
BSick7 committed Mar 20, 2024
1 parent e25d3a8 commit b6735f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# 0.6.3 (Mar 20, 2024)
* Disable `read_only_root_filesystem`.
* Updated creation sequence to ensure secrets are created before creating the deployment.

# 0.6.2 (Jan 30, 2024)
* Use `var.readiness_delay` for liveness probe, switch to tcp liveness probe.
Expand Down
2 changes: 2 additions & 0 deletions deployment.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ resource "kubernetes_deployment_v1" "this" {
#bridgecrew:skip=CKV_K8S_43: "Image should use digest". Image digest is not available yet.
wait_for_rollout = false

depends_on = [kubernetes_manifest.secrets_from_gsm]

metadata {
name = local.app_name
namespace = local.app_namespace
Expand Down

0 comments on commit b6735f4

Please sign in to comment.