Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: enable enable_cluster_creator_admin_permissions by default #138

Merged
merged 2 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -163,3 +163,18 @@ module "aws_ebs_csi_pod_identity" {

tags = var.tags
}

moved {
from = module.vpc_cni_irsa_role
to = module.vpc_cni_irsa_role[0]
}

moved {
from = module.ebs_csi_irsa_role
to = module.ebs_csi_irsa_role[0]
}

moved {
from = module.aws_vpc_cni_pod_identity
to = module.aws_vpc_cni_pod_identity[0]
}
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ variable "access_entries" {
variable "enable_cluster_creator_admin_permissions" {
description = "Indicates whether or not to add the cluster creator (the identity used by Terraform) as an administrator via access entry"
type = bool
default = false
default = true
}

######################################################################
Expand Down
Loading