Skip to content

Commit

Permalink
feat: added new outputs to the Observability DA: `resource_group_name…
Browse files Browse the repository at this point in the history
…` and `resource_group_id` (#146)
  • Loading branch information
MatthewLemmond authored Oct 16, 2024
1 parent 8aa4ea9 commit df75251
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions solutions/instances/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
# Outputs
##############################################################################


output "resource_group_name" {
value = module.resource_group.resource_group_name
description = "The name of the Resource Group the instances are provisioned in."
}

output "resource_group_id" {
value = module.resource_group.resource_group_id
description = "The ID of the Resource Group the instances are provisioned in."
}

## Cloud logs
output "cloud_logs_crn" {
value = var.cloud_logs_provision ? module.observability_instance.cloud_logs_crn : null
Expand Down

0 comments on commit df75251

Please sign in to comment.