Skip to content

Commit a89e91b

Browse files
feat: Add aws_security_group_rule.cluster_https_worker_ingress to output values (#901)
1 parent 7de18cd commit a89e91b

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
234234
| kubeconfig\_filename | The filename of the generated kubectl config. |
235235
| node\_groups | Outputs from EKS node groups. Map of maps, keyed by var.node\_groups keys |
236236
| oidc\_provider\_arn | The ARN of the OIDC Provider if `enable_irsa = true`. |
237+
| security\_group\_rule\_cluster\_https\_worker\_ingress | Security group rule responsible for allowing pods to communicate with the EKS cluster API. |
237238
| worker\_iam\_instance\_profile\_arns | default IAM instance profile ARN for EKS worker groups |
238239
| worker\_iam\_instance\_profile\_names | default IAM instance profile name for EKS worker groups |
239240
| worker\_iam\_role\_arn | default IAM role ARN for EKS worker groups |

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,8 @@ output "node_groups" {
165165
description = "Outputs from EKS node groups. Map of maps, keyed by var.node_groups keys"
166166
value = module.node_groups.node_groups
167167
}
168+
169+
output "security_group_rule_cluster_https_worker_ingress" {
170+
description = "Security group rule responsible for allowing pods to communicate with the EKS cluster API."
171+
value = aws_security_group_rule.cluster_https_worker_ingress
172+
}

0 commit comments

Comments
 (0)