Skip to content

Commit

Permalink
fix: Correcting namespace for csi-secret-store-provider-aws module (a…
Browse files Browse the repository at this point in the history
…ws-ia#1281)

Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
Resolves aws-ia#1172
  • Loading branch information
MaiCabrera authored and allamand committed Jan 10, 2023
1 parent cce95a2 commit 2f0b821
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
name = try(var.helm_config.name, "csi-secrets-store-provider-aws")
namespace = try(var.helm_config.namespace, local.name)
namespace = try(var.helm_config.namespace, "kube-system")
}

resource "kubernetes_namespace_v1" "csi_secrets_store_provider_aws" {
Expand Down

0 comments on commit 2f0b821

Please sign in to comment.