Skip to content

Commit 1bc9777

Browse files
authored
feat: Added Next Steps to the DA deployment end screen for easier navigation (#496)
1 parent 2ff3a6b commit 1bc9777

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

solutions/quickstart/outputs.tf

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,28 @@ output "service_credential_secret_groups" {
6262
description = "Service credential secret groups"
6363
value = length(local.service_credential_secrets) > 0 ? module.secrets_manager_service_credentials[0].secret_groups : null
6464
}
65+
66+
output "next_steps_text" {
67+
value = "Your Event Streams instance is ready."
68+
description = "Next steps text"
69+
}
70+
71+
output "next_step_primary_label" {
72+
value = "Go to Event Streams instance"
73+
description = "Primary label"
74+
}
75+
76+
output "next_step_primary_url" {
77+
value = "https://cloud.ibm.com/services/messagehub/${urlencode(module.event_streams.crn)}?paneId=manage"
78+
description = "Primary URL"
79+
}
80+
81+
output "next_step_secondary_label" {
82+
value = "Learn more about Event Streams"
83+
description = "Secondary label"
84+
}
85+
86+
output "next_step_secondary_url" {
87+
value = "https://cloud.ibm.com/docs/EventStreams?topic=EventStreams-getting-started"
88+
description = "Secondary URL"
89+
}

solutions/security-enforced/outputs.tf

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,28 @@ output "event_streams_mirroring_topic_patterns" {
7272
description = "Mirroring topic patterns"
7373
value = module.event_streams.mirroring_topic_patterns
7474
}
75+
76+
output "next_steps_text" {
77+
value = "Your Event Streams instance is ready."
78+
description = "Next steps text"
79+
}
80+
81+
output "next_step_primary_label" {
82+
value = "Go to Event Streams instance"
83+
description = "Primary label"
84+
}
85+
86+
output "next_step_primary_url" {
87+
value = "https://cloud.ibm.com/services/messagehub/${urlencode(module.event_streams.crn)}?paneId=manage"
88+
description = "Primary URL"
89+
}
90+
91+
output "next_step_secondary_label" {
92+
value = "Learn more about Event Streams"
93+
description = "Secondary label"
94+
}
95+
96+
output "next_step_secondary_url" {
97+
value = "https://cloud.ibm.com/docs/EventStreams?topic=EventStreams-getting-started"
98+
description = "Secondary URL"
99+
}

0 commit comments

Comments
 (0)