Skip to content

Commit

Permalink
align tf output vars with CLI parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
3u13r committed Oct 18, 2023
1 parent 5819a11 commit ecb764e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion cli/internal/terraform/terraform/openstack/outputs.tf
Original file line number Diff line number Diff line change
@@ -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
}

Expand Down
6 changes: 5 additions & 1 deletion cli/internal/terraform/terraform/qemu/outputs.tf
Original file line number Diff line number Diff line change
@@ -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]
}

Expand Down

0 comments on commit ecb764e

Please sign in to comment.