mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-20 16:43:46 +01:00
Remove of autoscaling IAM policy related stuff (#716)
* Disable management of autoscaling IAM policy by default * remove completely * update changelog notes * fix pre-commit stuff * misc updates * fmt * fix changelog * Removal of tags and update docs * Change after updating terraform-docs * Add second tag
This commit is contained in:
@@ -9,11 +9,10 @@ data "null_data_source" "node_groups" {
|
||||
# Ensure these resources are created before "unlocking" the data source.
|
||||
# `depends_on` causes a refresh on every run so is useless here.
|
||||
# [Re]creating or removing these resources will trigger recreation of Node Group resources
|
||||
aws_auth = coalescelist(kubernetes_config_map.aws_auth[*].id, [""])[0]
|
||||
role_NodePolicy = coalescelist(aws_iam_role_policy_attachment.workers_AmazonEKSWorkerNodePolicy[*].id, [""])[0]
|
||||
role_CNI_Policy = coalescelist(aws_iam_role_policy_attachment.workers_AmazonEKS_CNI_Policy[*].id, [""])[0]
|
||||
role_Container = coalescelist(aws_iam_role_policy_attachment.workers_AmazonEC2ContainerRegistryReadOnly[*].id, [""])[0]
|
||||
role_autoscaling = coalescelist(aws_iam_role_policy_attachment.workers_autoscaling[*].id, [""])[0]
|
||||
aws_auth = coalescelist(kubernetes_config_map.aws_auth[*].id, [""])[0]
|
||||
role_NodePolicy = coalescelist(aws_iam_role_policy_attachment.workers_AmazonEKSWorkerNodePolicy[*].id, [""])[0]
|
||||
role_CNI_Policy = coalescelist(aws_iam_role_policy_attachment.workers_AmazonEKS_CNI_Policy[*].id, [""])[0]
|
||||
role_Container = coalescelist(aws_iam_role_policy_attachment.workers_AmazonEC2ContainerRegistryReadOnly[*].id, [""])[0]
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user