From f3a8eb5a5864a054185b5fd1b672a6894631f2bd Mon Sep 17 00:00:00 2001 From: Junior Dongo Date: Wed, 9 Oct 2024 16:56:57 +0200 Subject: [PATCH 1/4] update provider version --- infrastructure/quick-deploy/aws/versions.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/quick-deploy/aws/versions.tf b/infrastructure/quick-deploy/aws/versions.tf index 7e5e66bbc..432714fd3 100644 --- a/infrastructure/quick-deploy/aws/versions.tf +++ b/infrastructure/quick-deploy/aws/versions.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 5.4.0" + version = "~> 5.61" } null = { source = "hashicorp/null" From bd67b495c4cee1001b15557180586220294d8be5 Mon Sep 17 00:00:00 2001 From: Junior Dongo Date: Wed, 9 Oct 2024 16:57:24 +0200 Subject: [PATCH 2/4] remove unused variables --- infrastructure/quick-deploy/aws/variables.tf | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/infrastructure/quick-deploy/aws/variables.tf b/infrastructure/quick-deploy/aws/variables.tf index 7892ea469..4aa9d348b 100644 --- a/infrastructure/quick-deploy/aws/variables.tf +++ b/infrastructure/quick-deploy/aws/variables.tf @@ -144,16 +144,6 @@ variable "eks" { repository = optional(string) version = optional(string) }), {}) - map_roles = optional(list(object({ - rolearn = string - username = string - groups = list(string) - })), []) - map_users = optional(list(object({ - userarn = string - username = string - groups = list(string) - })), []) }) } From 79fe4d3f764bee5de5fd6818522f9ec2d975494b Mon Sep 17 00:00:00 2001 From: Junior Dongo Date: Wed, 9 Oct 2024 16:59:14 +0200 Subject: [PATCH 3/4] update terraform module eks --- infrastructure/quick-deploy/aws/eks.tf | 2 -- 1 file changed, 2 deletions(-) diff --git a/infrastructure/quick-deploy/aws/eks.tf b/infrastructure/quick-deploy/aws/eks.tf index 1b194a32e..96004de7f 100644 --- a/infrastructure/quick-deploy/aws/eks.tf +++ b/infrastructure/quick-deploy/aws/eks.tf @@ -55,8 +55,6 @@ module "eks" { cluster_endpoint_public_access_cidrs = var.eks.cluster_endpoint_public_access_cidrs cluster_log_retention_in_days = var.eks.cluster_log_retention_in_days - map_roles_groups = var.eks.map_roles - map_users_groups = var.eks.map_users eks_managed_node_groups = var.eks_managed_node_groups self_managed_node_groups = var.self_managed_node_groups fargate_profiles = var.fargate_profiles From b9a8430c3b19698396caa29c513245233858e98b Mon Sep 17 00:00:00 2001 From: Junior Dongo Date: Thu, 14 Nov 2024 16:34:56 +0100 Subject: [PATCH 4/4] add infra pre-release --- versions.tfvars.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions.tfvars.json b/versions.tfvars.json index 69b68c941..52a1b61d2 100644 --- a/versions.tfvars.json +++ b/versions.tfvars.json @@ -1,7 +1,7 @@ { "armonik_versions": { "armonik": "2.20.0", - "infra": "0.5.1-pre-1-84546ad", + "infra": "0.5.1-pre-2-e62c928", "infra_plugins": "0.1.1", "core": "0.24.3", "api": "3.19.0",