Skip to content

Commit

Permalink
fix:change in count condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Rupalgw committed Feb 14, 2024
1 parent 3c5d773 commit f91ff36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
output "resource_group_id" {
value = azurerm_resource_group.default[0].id
value = azurerm_resource_group.default[*].id
description = "The ID of the Resource Group."
}

output "resource_group_name" {
value = azurerm_resource_group.default[0].name
value = azurerm_resource_group.default[*].name
description = "The Name which should be used for this Resource Group. Changing this forces a new Resource Group to be created."
}

output "resource_group_location" {
value = azurerm_resource_group.default[0].location
value = azurerm_resource_group.default[*].location
description = "The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created."
}

Expand Down

0 comments on commit f91ff36

Please sign in to comment.