Skip to content

Commit 677a996

Browse files
authored
fix: fixed the resource_group_names and resource_group_data outputs to ensure they include prefix (#852)
1 parent 14b3656 commit 677a996

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,12 +271,12 @@ output "placement_groups" {
271271

272272
output "resource_group_names" {
273273
description = "List of resource groups names used within landing zone."
274-
value = keys(local.resource_groups)
274+
value = keys(local.resource_groups_info)
275275
}
276276

277277
output "resource_group_data" {
278278
description = "List of resource groups data used within landing zone."
279-
value = local.resource_groups
279+
value = local.resource_groups_info
280280
}
281281

282282

0 commit comments

Comments
 (0)