Skip to content

Commit

Permalink
use dependency blocks again
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Feb 12, 2025
1 parent f8163ea commit b4ffa06
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions lab/_envcommon/helm-provider.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ generate "helm_provider" {
path = "helm-provider.tf"
if_exists = "overwrite_terragrunt"
contents = <<-EOF
%{if "${dependency.eks.outputs.cluster_name}" != "a-cluster-name" ~}
data "aws_eks_cluster" "helm" {
name = "${dependency.eks.outputs.cluster_name}"
}
Expand All @@ -49,7 +48,6 @@ generate "helm_provider" {
token = data.aws_eks_cluster_auth.helm.token
}
}
%{ endif ~}
EOF
}
>>>>>>> 354afd7 (make providers great again)
2 changes: 0 additions & 2 deletions lab/_envcommon/kube-provider.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ generate "kube_provider" {
path = "kube-provider.tf"
if_exists = "overwrite_terragrunt"
contents = <<-EOF
%{if "${dependency.eks.outputs.cluster_name}" != "a-cluster-name" ~}
data "aws_eks_cluster" "kube" {
name = "${dependency.eks.outputs.cluster_name}"
}
Expand All @@ -45,7 +44,6 @@ generate "kube_provider" {
cluster_ca_certificate = base64decode(data.aws_eks_cluster.kube.certificate_authority[0].data)
token = data.aws_eks_cluster_auth.kube.token
}
%{ endif ~}
EOF
}
>>>>>>> 354afd7 (make providers great again)

0 comments on commit b4ffa06

Please sign in to comment.