align tf output vars with CLI parsing (#2475)

This commit is contained in:
3u13r 2023-10-19 10:03:22 +02:00 committed by GitHub
parent ee54b71a9e
commit 0bfb4f7e11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View File

@ -1,4 +1,8 @@
output "ip" {
output "out_of_cluster_endpoint" {
value = openstack_networking_floatingip_v2.public_ip.address
}
output "in_cluster_endpoint" {
value = openstack_networking_floatingip_v2.public_ip.address
}

View File

@ -1,4 +1,8 @@
output "ip" {
output "out_of_cluster_endpoint" {
value = module.node_group["control_plane_default"].instance_ips[0]
}
output "in_cluster_endpoint" {
value = module.node_group["control_plane_default"].instance_ips[0]
}