feat: Add aws_security_group_rule.cluster_https_worker_ingress to output values (#901)

This commit is contained in:
Michael Marshall
2020-06-06 02:55:35 -06:00
committed by GitHub
parent 7de18cd9cd
commit a89e91bf8f
2 changed files with 6 additions and 0 deletions

View File

@@ -165,3 +165,8 @@ output "node_groups" {
description = "Outputs from EKS node groups. Map of maps, keyed by var.node_groups keys"
value = module.node_groups.node_groups
}
output "security_group_rule_cluster_https_worker_ingress" {
description = "Security group rule responsible for allowing pods to communicate with the EKS cluster API."
value = aws_security_group_rule.cluster_https_worker_ingress
}