File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,8 @@ module "eks" {
40
40
subnet_ids = var. vpc_private_subnets
41
41
42
42
manage_aws_auth_configmap = true
43
+
44
+ /* Remove additional IAM configuration for now; Enable later if warranted
43
45
aws_auth_roles = [
44
46
{
45
47
rolearn = aws_iam_role.eks_admin.arn
@@ -50,6 +52,7 @@ module "eks" {
50
52
51
53
}
52
54
]
55
+ */
53
56
54
57
eks_managed_node_group_defaults = {
55
58
ami_type = " AL2_x86_64"
@@ -96,6 +99,7 @@ module "eks_blueprints_kubernetes_addons" {
96
99
tags = local. tags
97
100
}
98
101
102
+ /* Remove additional IAM configuration for now; Enable later if warranted
99
103
resource "aws_iam_role" "eks_admin" {
100
104
name = "admin-${var.cluster_name}"
101
105
@@ -121,4 +125,5 @@ resource "aws_iam_role" "eks_admin" {
121
125
resource "aws_iam_role_policy_attachment" "eks_adminrole_policy_attach" {
122
126
role = "${aws_iam_role.eks_admin.name}"
123
127
policy_arn = "${data.aws_iam_policy.administrator_access.arn}"
124
- }
128
+ }
129
+ */
You can’t perform that action at this time.
0 commit comments