Skip to content

Commit

Permalink
Add resource groups to outputs (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimfy authored Nov 16, 2023
1 parent ceb9cb8 commit 6da2278
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ output "workload_resource_group_name" {
value = azurerm_resource_group.workload.name
}

output "resource_group" {
value = azurerm_resource_group.workload
}

output "resource_groups_user_specified" {
value = azurerm_resource_group.user_specified
}

output "applications" {
value = module.applications
}
Expand Down

0 comments on commit 6da2278

Please sign in to comment.