Skip to content

Commit

Permalink
only aws
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Jul 18, 2024
1 parent fe21f56 commit 38060a1
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions lab/us-gov-east-1/vpc/mcmCluster/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -48,30 +48,6 @@ provider "aws" {
# Only these AWS Account IDs may be operated on by this template
allowed_account_ids = ["${local.account_id}"]
}
data "aws_eks_cluster" "cluster" {
name = var.cluster_name
}
data "aws_eks_cluster_auth" "cluster" {
name = var.cluster_name
}
provider "kubernetes" {
host = data.aws_eks_cluster.cluster.endpoint
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority[0].data)
token = data.aws_eks_cluster_auth.cluster.token
}
provider "helm" {
kubernetes {
host = data.aws_eks_cluster.cluster.endpoint
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority[0].data)
token = data.aws_eks_cluster_auth.cluster.token
}
}
EOF
}

Expand Down

0 comments on commit 38060a1

Please sign in to comment.