openstack-infrastructure-te.../s2i2s/mailbackup-relay/outputs.tf

20 lines
615 B
HCL

output "relay_instance_id" {
description = "Instance ID of the mailbox backup relay VM"
value = openstack_compute_instance_v2.relay.id
}
output "relay_public_ip" {
description = "Floating IP address of the mailbox backup relay"
value = openstack_networking_floatingip_v2.relay_ip.address
}
output "relay_fqdn" {
description = "DNS name of the mailbox backup relay"
value = openstack_dns_recordset_v2.relay_dns.name
}
output "relay_private_ip" {
description = "Private IP address of the mailbox backup relay"
value = openstack_networking_port_v2.relay_port.all_fixed_ips
}