cleaning up before initial release

This commit is contained in:
brandoconnor
2018-06-06 21:58:12 -07:00
parent 309e7f7083
commit 283e9b203c
9 changed files with 109 additions and 26 deletions

View File

@@ -1,9 +1,24 @@
output "cluster_endpoint" {
description = "Endpoint for EKS controlplane."
description = "Endpoint for EKS control plane."
value = "${module.eks.cluster_endpoint}"
}
output "cluster_security_group_ids" {
description = "."
description = "Security group ids attached to the cluster control plane."
value = "${module.eks.cluster_security_group_ids}"
}
output "kubectl_config" {
description = "kubectl config as generated by the module."
value = "${module.eks.kubeconfig}"
}
output "config_map_aws_auth" {
description = ""
value = "${module.eks.config_map_aws_auth}"
}
output "region" {
description = "AWS region."
value = "${var.region}"
}