Files
AWS-ContainerLab-Deployment/terraform/outputs.tf
Damien A 609e616d7c Add behavior :
- Personal SSH Key 🔐
- Deploy repository from variables ⚙️
- Import custom network images 🛜
2023-11-10 10:59:04 +01:00

8 lines
202 B
HCL

output "public_ip" {
value = aws_instance.containerlab_host.public_ip
}
output "containerlab_fqdn" {
value = "${aws_route53_record.containerlab_fqdn.name}.${data.aws_route53_zone.selected.name}"
}