mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-29 20:07:38 +02:00
fix: Disable creation of cluster security group rules that map to node security group when create_node_security_group = false (#2274)
* fix: Disable creation of cluster security group rules that map to node security group when `create_node_security_group` = `false` * feat: Update Fargate example to run only Fargate and show disabling of both cluster and node security groups * fix: Ensure CoreDNS changes are made ahead of install
This commit is contained in:
@@ -26,7 +26,7 @@ By default, EKS creates a cluster primary security group that is created outside
|
||||
attach_cluster_primary_security_group = true # default is false
|
||||
|
||||
node_security_group_tags = {
|
||||
"kubernetes.io/cluster/<CLUSTER_NAME>" = "" # or any other value other than "owned"
|
||||
"kubernetes.io/cluster/<CLUSTER_NAME>" = null # or any other value other than "owned"
|
||||
}
|
||||
```
|
||||
|
||||
@@ -36,7 +36,7 @@ By default, EKS creates a cluster primary security group that is created outside
|
||||
attach_cluster_primary_security_group = true # default is false
|
||||
|
||||
cluster_tags = {
|
||||
"kubernetes.io/cluster/<CLUSTER_NAME>" = "" # or any other value other than "owned"
|
||||
"kubernetes.io/cluster/<CLUSTER_NAME>" = null # or any other value other than "owned"
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user