01cf11b961
* Run terraform fmt
* Add terraform fmt to .terraform-validate CI step
* Add tf-validate-aws CI step
* Revert "Add tf-validate-aws CI step"
This reverts commit e007225fac
.
27 lines
582 B
HCL
27 lines
582 B
HCL
output "bastion_ip" {
|
|
value = "${join("\n", aws_instance.bastion-server.*.public_ip)}"
|
|
}
|
|
|
|
output "masters" {
|
|
value = "${join("\n", aws_instance.k8s-master.*.private_ip)}"
|
|
}
|
|
|
|
output "workers" {
|
|
value = "${join("\n", aws_instance.k8s-worker.*.private_ip)}"
|
|
}
|
|
|
|
output "etcd" {
|
|
value = "${join("\n", aws_instance.k8s-etcd.*.private_ip)}"
|
|
}
|
|
|
|
output "aws_elb_api_fqdn" {
|
|
value = "${module.aws-elb.aws_elb_api_fqdn}:${var.aws_elb_api_port}"
|
|
}
|
|
|
|
output "inventory" {
|
|
value = "${data.template_file.inventory.rendered}"
|
|
}
|
|
|
|
output "default_tags" {
|
|
value = "${var.default_tags}"
|
|
}
|