Skip to content

Commit

Permalink
fix: add new outputs to the COS DA (#783)
Browse files Browse the repository at this point in the history
* fix: add resource group name output

* resolve comments
  • Loading branch information
iamar7 authored Nov 27, 2024
1 parent 410fc63 commit 9d43dde
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions solutions/instance/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ output "resource_group_id" {
value = module.resource_group.resource_group_id
}

output "resource_group_name" {
description = "Resource group name"
value = !var.existing_resource_group ? module.resource_group.resource_group_name : var.existing_resource_group
}

output "cos_instance_id" {
description = "COS instance id"
value = module.cos.cos_instance_id
Expand Down

0 comments on commit 9d43dde

Please sign in to comment.