Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions infra/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
data "aws_eks_cluster_auth" "this" {
ephemeral "aws_eks_cluster_auth" "this" {
name = module.eks.cluster_name
}

Expand Down Expand Up @@ -127,20 +127,20 @@ provider "aws" {
provider "kubernetes" {
host = module.eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data)
token = data.aws_eks_cluster_auth.this.token
token = ephemeral.aws_eks_cluster_auth.this.token
}

provider "helm" {
kubernetes {
host = module.eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data)
token = data.aws_eks_cluster_auth.this.token
token = ephemeral.aws_eks_cluster_auth.this.token
}
}
provider "kubectl" {
apply_retry_count = 30
host = module.eks.cluster_endpoint
cluster_ca_certificate = base64decode(module.eks.cluster_certificate_authority_data)
token = data.aws_eks_cluster_auth.this.token
token = ephemeral.aws_eks_cluster_auth.this.token
load_config_file = false
}
2 changes: 1 addition & 1 deletion infra/terraform/versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 1.8.0"
required_version = ">= 1.10.0"

required_providers {
aws = {
Expand Down
Loading