diff --git a/deployments/stacks/dpe-k8s/main.tf b/deployments/stacks/dpe-k8s/main.tf index 8f22675c..9677d01f 100644 --- a/deployments/stacks/dpe-k8s/main.tf +++ b/deployments/stacks/dpe-k8s/main.tf @@ -15,7 +15,7 @@ module "sage-aws-vpc" { module "sage-aws-eks" { source = "spacelift.io/sagebionetworks/sage-aws-eks/aws" - version = "0.5.7" + version = "0.6.0" cluster_name = var.cluster_name private_vpc_subnet_ids = module.sage-aws-vpc.private_subnet_ids diff --git a/modules/main.tf b/modules/main.tf index 9cf7a7cd..0d02c9c6 100644 --- a/modules/main.tf +++ b/modules/main.tf @@ -15,7 +15,7 @@ locals { description = "Terraform module for creating an EKS cluster in AWS" project_root = "modules/sage-aws-eks" space_id = "root" - version_number = "0.5.7" + version_number = "0.6.0" } vpc = { diff --git a/modules/sage-aws-eks/main.tf b/modules/sage-aws-eks/main.tf index a1d9429d..4c33b5ad 100644 --- a/modules/sage-aws-eks/main.tf +++ b/modules/sage-aws-eks/main.tf @@ -32,6 +32,12 @@ locals { type = "cluster" } } + eks_developer_edit_role = { + policy_arn = "arn:aws:eks::aws:cluster-access-policy/AmazonEKSEditPolicy" + access_scope = { + type = "cluster" + } + } } } }