Skip to content

Commit

Permalink
Commenting namespace creation step as it's giving an error
Browse files Browse the repository at this point in the history
  • Loading branch information
nangu001 committed Apr 24, 2024
1 parent 54326c9 commit 66f0064
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,13 @@ resource "aws_security_group_rule" "allow_sidecar_injection" {
source_security_group_id = module.cluster.cluster_primary_security_group_id
}

resource "kubernetes_namespace" "operators" {
depends_on = [
module.cluster.eks_managed_node_groups,
]

metadata {
name = var.operators_ns
}
}
# resource "kubernetes_namespace" "operators" {
# depends_on = [
# module.cluster.eks_managed_node_groups,
# ]

# metadata {
# name = var.operators_ns
# }
# }

0 comments on commit 66f0064

Please sign in to comment.