Skip to content

Commit

Permalink
Merge pull request #17 from clouddrove/fix/count_condition
Browse files Browse the repository at this point in the history
Fix/count condition
  • Loading branch information
d4kverma authored Feb 14, 2024
2 parents e5b6ee5 + f91ff36 commit 315005a
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 315005a

Please sign in to comment.