Skip to content

Commit

Permalink
Formatting value lines newly added outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlukemt committed Dec 11, 2024
1 parent c11f4b9 commit 9a897e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ output "cloudbuilder_web_address" {
}
output "metal_vrf_interconnection_tokens" {
description = "Fabric Service Tokens for Metal VRF Interconnection."
value = [for r in module.metal_vrf.vrf_interconnection_service_tokens : join( " = ", [tostring(r.role), tostring(r.id)])]
value = [for r in module.metal_vrf.vrf_interconnection_service_tokens : join( " = ", [tostring(r.role), tostring(r.id)])]
}
output "nst-t_uplink_interconnection_tokens" {
description = "Fabric Service Tokens for NSX-T Uplink VLANs Interconnection."
value = [for r in equinix_metal_connection.nsxt_uplink_connection_metal.service_tokens : join( " = ", [tostring(r.role), tostring(r.id)])]
value = [for r in equinix_metal_connection.nsxt_uplink_connection_metal.service_tokens : join( " = ", [tostring(r.role), tostring(r.id)])]
}

0 comments on commit 9a897e6

Please sign in to comment.