2018-12-15 21:48:08 -08:00
|
|
|
output "kubeconfig-admin" {
|
2019-05-27 20:42:48 -07:00
|
|
|
value = module.bootkube.kubeconfig-admin
|
2018-12-15 21:48:08 -08:00
|
|
|
}
|
|
|
|
|
2018-06-23 15:15:57 -07:00
|
|
|
# Outputs for Kubernetes Ingress
|
|
|
|
|
2017-09-28 00:46:17 -07:00
|
|
|
output "ingress_dns_name" {
|
2019-05-27 20:42:48 -07:00
|
|
|
value = aws_lb.nlb.dns_name
|
2017-11-07 21:56:50 -08:00
|
|
|
description = "DNS name of the network load balancer for distributing traffic to Ingress controllers"
|
2017-09-28 00:46:17 -07:00
|
|
|
}
|
2018-02-26 22:16:34 -08:00
|
|
|
|
2019-01-13 16:37:12 -08:00
|
|
|
output "ingress_zone_id" {
|
2019-05-27 20:42:48 -07:00
|
|
|
value = aws_lb.nlb.zone_id
|
2019-01-13 16:37:12 -08:00
|
|
|
description = "Route53 zone id of the network load balancer DNS name that can be used in Route53 alias records"
|
|
|
|
}
|
|
|
|
|
2018-02-26 22:16:34 -08:00
|
|
|
# Outputs for worker pools
|
|
|
|
|
|
|
|
output "vpc_id" {
|
2019-05-27 20:42:48 -07:00
|
|
|
value = aws_vpc.network.id
|
2018-02-26 22:16:34 -08:00
|
|
|
description = "ID of the VPC for creating worker instances"
|
|
|
|
}
|
|
|
|
|
|
|
|
output "subnet_ids" {
|
2019-05-27 20:42:48 -07:00
|
|
|
value = aws_subnet.public.*.id
|
2018-02-26 22:16:34 -08:00
|
|
|
description = "List of subnet IDs for creating worker instances"
|
|
|
|
}
|
|
|
|
|
|
|
|
output "worker_security_groups" {
|
2019-05-27 20:42:48 -07:00
|
|
|
value = [aws_security_group.worker.id]
|
2018-02-26 22:16:34 -08:00
|
|
|
description = "List of worker security group IDs"
|
|
|
|
}
|
|
|
|
|
|
|
|
output "kubeconfig" {
|
2019-05-27 20:42:48 -07:00
|
|
|
value = module.bootkube.kubeconfig-kubelet
|
2018-02-26 22:16:34 -08:00
|
|
|
}
|
2018-06-23 15:15:57 -07:00
|
|
|
|
|
|
|
# Outputs for custom load balancing
|
|
|
|
|
2019-03-31 23:22:47 -07:00
|
|
|
output "nlb_id" {
|
|
|
|
description = "ARN of the Network Load Balancer"
|
2019-05-27 20:42:48 -07:00
|
|
|
value = aws_lb.nlb.id
|
2019-03-31 23:22:47 -07:00
|
|
|
}
|
|
|
|
|
2018-06-23 15:15:57 -07:00
|
|
|
output "worker_target_group_http" {
|
|
|
|
description = "ARN of a target group of workers for HTTP traffic"
|
2019-05-27 20:42:48 -07:00
|
|
|
value = module.workers.target_group_http
|
2018-06-23 15:15:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
output "worker_target_group_https" {
|
|
|
|
description = "ARN of a target group of workers for HTTPS traffic"
|
2019-05-27 20:42:48 -07:00
|
|
|
value = module.workers.target_group_https
|
2018-06-23 15:15:57 -07:00
|
|
|
}
|
2019-05-27 20:42:48 -07:00
|
|
|
|