Skip to content

Commit

Permalink
fixing region in locals
Browse files Browse the repository at this point in the history
  • Loading branch information
caiocsgomes committed May 5, 2024
1 parent d4dcaa6 commit 992afde
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions terraform/environments/prod/eks.tf
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
provider "aws" {
region = local.region
}

data "aws_caller_identity" "current" {}
data "aws_availability_zones" "available" {}

locals {
name = "aws-eks-cluster"
cluster_version = "1.29"
region = "eu-east-1"
region = "us-east-1"

vpc_cidr = "10.0.0.0/16"
azs = slice(data.aws_availability_zones.available.names, 0, 3)
Expand Down

0 comments on commit 992afde

Please sign in to comment.