From 533de5ca4131e25acf0cb3e11672aa187e52b3f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Conall=20=C3=93=20Cofaigh?= Date: Mon, 20 Oct 2025 15:17:24 +0100 Subject: [PATCH] fix: added output `resource_group_name` to DA --- solutions/fully-configurable/outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/solutions/fully-configurable/outputs.tf b/solutions/fully-configurable/outputs.tf index 758b3095..016682d8 100644 --- a/solutions/fully-configurable/outputs.tf +++ b/solutions/fully-configurable/outputs.tf @@ -47,6 +47,11 @@ output "resource_group_id" { value = module.ocp_base.resource_group_id } +output "resource_group_name" { + description = "The name of the resource group where the cluster is deployed." + value = module.resource_group.resource_group_name +} + output "ingress_hostname" { description = "The hostname assigned to the Cluster's Ingress subdomain for external access." value = module.ocp_base.ingress_hostname