Skip to content

Commit

Permalink
applies fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
theoskolnik committed Feb 27, 2024
1 parent 57445fc commit 02d03e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/vm/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
# SPDX-License-Identifier: MPL-2.0

output "vmss_name" {
value = azurerm_linux_virtual_machine_scale_set.tfe_vmss.name
value = azurerm_linux_virtual_machine_scale_set.tfe_vmss.name
description = "The name of the virtual machine scale set"
}

output "vmss_instance_ids" {
value = toset([for i in data.azurerm_virtual_machine_scale_set.tfe_vmss.instances[*] : i.instance_id ])
value = toset([for i in data.azurerm_virtual_machine_scale_set.tfe_vmss.instances[*] : i.instance_id])
description = "A list of the virual machine scale set VMs ids"
}
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ output "instance_user_name" {
}

output "vmss_name" {
value = module.vm.vmss_name
value = module.vm.vmss_name
description = "The name of the virtual machine scale set"
}

output "vmss_instance_ids" {
value = module.vm.vmss_instance_ids
value = module.vm.vmss_instance_ids
description = "A list of the virual machine scale set VMs ids"
}

0 comments on commit 02d03e4

Please sign in to comment.