Skip to content

Commit df75251

Browse files
feat: added new outputs to the Observability DA: resource_group_name and resource_group_id (#146)
1 parent 8aa4ea9 commit df75251

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

solutions/instances/outputs.tf

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
# Outputs
33
##############################################################################
44

5+
6+
output "resource_group_name" {
7+
value = module.resource_group.resource_group_name
8+
description = "The name of the Resource Group the instances are provisioned in."
9+
}
10+
11+
output "resource_group_id" {
12+
value = module.resource_group.resource_group_id
13+
description = "The ID of the Resource Group the instances are provisioned in."
14+
}
15+
516
## Cloud logs
617
output "cloud_logs_crn" {
718
value = var.cloud_logs_provision ? module.observability_instance.cloud_logs_crn : null

0 commit comments

Comments
 (0)