From e386b62f4ab69524b6b432c98b405b770fe7ac54 Mon Sep 17 00:00:00 2001 From: monkamtanyi <160943000+monkamtanyi@users.noreply.github.com> Date: Wed, 14 Aug 2024 17:58:53 -0400 Subject: [PATCH] Update variables.tf --- modules/eks-cluster/variables.tf | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/modules/eks-cluster/variables.tf b/modules/eks-cluster/variables.tf index e2ce9bc..dbbb27b 100644 --- a/modules/eks-cluster/variables.tf +++ b/modules/eks-cluster/variables.tf @@ -20,11 +20,19 @@ variable "private_subnets" { type = list(any) } + ################################################################################ # Variables defined using Environment Variables ################################################################################ variable "rolearn" { - description = "Add admin role to the aws-auth configmap" + type = string + description = "rolearn id value" + default = "arn:aws:iam::339712828145:role/eks_full_access" } + + + + +