Skip to content

Commit 65cbb5f

Browse files
committed
fix: fixed windows output bug becauuse of count
1 parent ea5e32f commit 65cbb5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iac/cloud/openstack/openstack-nova/output.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ output "secgroup_id_master" {
3131
}
3232

3333
output "windows_nodes" {
34-
value = var.size_worker_windows.count > 0 ? module.node_worker_windows.nodes[*] : []
34+
value = var.size_worker_windows.count > 0 ? module.node_worker_windows[0].nodes[*] : []
3535
}
3636

0 commit comments

Comments
 (0)