From 7efab4e02cab791dc6fe3140ce047b1b09dc82b5 Mon Sep 17 00:00:00 2001 From: Harika-Ponna Date: Tue, 4 Nov 2025 11:39:56 +0530 Subject: [PATCH 1/4] feat: Added next step urls for the DA --- solutions/fully-configurable/outputs.tf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/solutions/fully-configurable/outputs.tf b/solutions/fully-configurable/outputs.tf index 25d1bee..347bf3c 100644 --- a/solutions/fully-configurable/outputs.tf +++ b/solutions/fully-configurable/outputs.tf @@ -26,3 +26,18 @@ output "app_config_collection_ids" { description = "List of IDs for the collections in the App Configuration instance" value = module.app_config.app_config_collection_ids } + +output "next_steps_text" { + value = "Your App Config Environment is ready." + description = "Next steps text" +} + +output "next_step_primary_label" { + value = "Go to App Config Instance" + description = "Primary label" +} + +output "next_step_primary_url" { + value = "https://cloud.ibm.com/services/apprapp/${module.app_config.app_config_crn}?paneId=manage" + description = "Primary URL" +} From ccaec8455ec3c9be8726399905d9076ae4f303b4 Mon Sep 17 00:00:00 2001 From: Harika-Ponna Date: Tue, 4 Nov 2025 12:59:51 +0530 Subject: [PATCH 2/4] feat: Added next step urls for the DA --- solutions/fully-configurable/outputs.tf | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/solutions/fully-configurable/outputs.tf b/solutions/fully-configurable/outputs.tf index 347bf3c..da6feb7 100644 --- a/solutions/fully-configurable/outputs.tf +++ b/solutions/fully-configurable/outputs.tf @@ -41,3 +41,14 @@ output "next_step_primary_url" { value = "https://cloud.ibm.com/services/apprapp/${module.app_config.app_config_crn}?paneId=manage" description = "Primary URL" } + +output "next_step_secondary_label" { + value = "View App Config Guide" + description = "Secondary label" +} + +output "next_step_secondary_url" { + value = "https://cloud.ibm.com/docs/app-configuration?topic=app-configuration-ac-appconfig" + description = "Secondary URL" +} + From bf5bcf9fde74f4de1c8919258e52bcea1f850965 Mon Sep 17 00:00:00 2001 From: Harika-Ponna Date: Thu, 6 Nov 2025 14:40:23 +0530 Subject: [PATCH 3/4] fix: addressed "end-of-file-fixer" issue --- solutions/fully-configurable/outputs.tf | 1 - 1 file changed, 1 deletion(-) diff --git a/solutions/fully-configurable/outputs.tf b/solutions/fully-configurable/outputs.tf index da6feb7..edff4d7 100644 --- a/solutions/fully-configurable/outputs.tf +++ b/solutions/fully-configurable/outputs.tf @@ -51,4 +51,3 @@ output "next_step_secondary_url" { value = "https://cloud.ibm.com/docs/app-configuration?topic=app-configuration-ac-appconfig" description = "Secondary URL" } - From 21f463131389aef2250aaa08dde01dfccab32e56 Mon Sep 17 00:00:00 2001 From: Harika-Ponna Date: Fri, 7 Nov 2025 11:59:11 +0530 Subject: [PATCH 4/4] fix : Updated config to Configuration in next step urls --- solutions/fully-configurable/outputs.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/solutions/fully-configurable/outputs.tf b/solutions/fully-configurable/outputs.tf index edff4d7..d7baa5a 100644 --- a/solutions/fully-configurable/outputs.tf +++ b/solutions/fully-configurable/outputs.tf @@ -28,12 +28,12 @@ output "app_config_collection_ids" { } output "next_steps_text" { - value = "Your App Config Environment is ready." + value = "Your App Configuration Environment is ready." description = "Next steps text" } output "next_step_primary_label" { - value = "Go to App Config Instance" + value = "Go to App Configuration Instance" description = "Primary label" } @@ -43,7 +43,7 @@ output "next_step_primary_url" { } output "next_step_secondary_label" { - value = "View App Config Guide" + value = "View App Configuration Guide" description = "Secondary label" }