teleport/examples/aws/terraform/starter-cluster/outputs.tf
Gus Luxton 99b4cb4d3d
docs: Update HA Terraform reference and add starter cluster reference (#32354)
* docs: Update Terraform reference documentation

* Fixes to shell script
2023-10-05 16:14:44 +00:00

20 lines
622 B
HCL

output "instance_ip_public" {
description = "Public IP address of the Teleport cluster instance"
value = aws_instance.cluster.public_ip
}
output "cluster_name" {
description = "Configured name for the Teleport cluster"
value = var.cluster_name
}
output "cluster_web_address" {
description = "Web address to access the Teleport cluster"
value = "https://${var.use_acm ? aws_route53_record.cluster_acm[0].name : aws_route53_record.cluster[0].name}"
}
output "key_name" {
description = "Name of the key pair used for SSH access to instances"
value = aws_instance.cluster.key_name
}