Skip to content

Commit

Permalink
fix output
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Oehrli committed Oct 13, 2020
1 parent da551e4 commit e539bea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
# display public IPs jumphost
output "bastion_public_ip" {
description = "The public IP address of the bastion server instances."
value = data.oci_core_instance.bastion.*.public_ip
value = oci_core_instance.bastion.*.public_ip
}

# output "bastion_dns_records" {
# description = "The DNS records for the bastion server instances."
# value = [data.oci_dns_record.bastion.*.rdata]
# }
output "bastion_dns_records" {
description = "The DNS records for the bastion server instances."
value = [oci_dns_record.bastion.*.rdata]
}

# --- EOF -------------------------------------------------------------------

0 comments on commit e539bea

Please sign in to comment.