We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
resource_group_name
resource_group_id
1 parent 8aa4ea9 commit df75251Copy full SHA for df75251
solutions/instances/outputs.tf
@@ -2,6 +2,17 @@
2
# Outputs
3
##############################################################################
4
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
16
## Cloud logs
17
output "cloud_logs_crn" {
18
value = var.cloud_logs_provision ? module.observability_instance.cloud_logs_crn : null
0 commit comments