Skip to content

Commit b8eebf9

Browse files
HarikaPonnaHarika-Ponna
andauthored
feat: Added primary and secondary next step urls for the DA (#310)
* feat: Added next step urls for the DA * feat: Added next step urls for the DA * fix: addressed "end-of-file-fixer" issue * fix : Updated config to Configuration in next step urls --------- Co-authored-by: Harika-Ponna <Harika.Ponna@ibm.com>
1 parent 7e54fca commit b8eebf9

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

solutions/fully-configurable/outputs.tf

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,28 @@ output "app_config_collection_ids" {
2626
description = "List of IDs for the collections in the App Configuration instance"
2727
value = module.app_config.app_config_collection_ids
2828
}
29+
30+
output "next_steps_text" {
31+
value = "Your App Configuration Environment is ready."
32+
description = "Next steps text"
33+
}
34+
35+
output "next_step_primary_label" {
36+
value = "Go to App Configuration Instance"
37+
description = "Primary label"
38+
}
39+
40+
output "next_step_primary_url" {
41+
value = "https://cloud.ibm.com/services/apprapp/${module.app_config.app_config_crn}?paneId=manage"
42+
description = "Primary URL"
43+
}
44+
45+
output "next_step_secondary_label" {
46+
value = "View App Configuration Guide"
47+
description = "Secondary label"
48+
}
49+
50+
output "next_step_secondary_url" {
51+
value = "https://cloud.ibm.com/docs/app-configuration?topic=app-configuration-ac-appconfig"
52+
description = "Secondary URL"
53+
}

0 commit comments

Comments
 (0)