Patrick de Ruiter c9edecd4ad
Added files
2020-06-24 11:31:27 +02:00

11 lines
294 B
HCL

output "instance_id" {
description = "Id of the created instance."
value = element(concat(aws_instance.instance.*.id, [""]), 0)
}
output "public_ip" {
description = "Public ip of the created instance."
value = element(concat(aws_instance.instance.*.public_ip, [""]), 0)
}