From f9542729b87cfc1327b96124cf899530c12bcc03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Peli=C5=84ski?= <96550013+jpelinski@users.noreply.github.com> Date: Mon, 20 Nov 2023 23:05:31 +0100 Subject: [PATCH] Update Kubernetes version updated version 1.21 >> 1.23 --- .../modules/services/eks-cluster/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/terraform/07-working-with-multiple-providers/modules/services/eks-cluster/main.tf b/code/terraform/07-working-with-multiple-providers/modules/services/eks-cluster/main.tf index afd93457..37edea0b 100644 --- a/code/terraform/07-working-with-multiple-providers/modules/services/eks-cluster/main.tf +++ b/code/terraform/07-working-with-multiple-providers/modules/services/eks-cluster/main.tf @@ -13,7 +13,7 @@ terraform { resource "aws_eks_cluster" "cluster" { name = var.name role_arn = aws_iam_role.cluster.arn - version = "1.21" + version = "1.23" vpc_config { subnet_ids = data.aws_subnets.default.ids