Skip to content
25 changes: 25 additions & 0 deletions solutions/quickstart/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,28 @@ output "service_credential_secret_groups" {
description = "Service credential secret groups"
value = length(local.service_credential_secrets) > 0 ? module.secrets_manager_service_credentials[0].secret_groups : null
}

output "next_steps_text" {
value = "Your Event Streams instance is ready."
description = "Next steps text"
}

output "next_step_primary_label" {
value = "Go to Event Streams instance"
description = "Primary label"
}

output "next_step_primary_url" {
value = "https://cloud.ibm.com/services/messagehub/${urlencode(module.event_streams.crn)}?paneId=manage"
description = "Primary URL"
}

output "next_step_secondary_label" {
value = "Learn more about Event Streams"
description = "Secondary label"
}

output "next_step_secondary_url" {
value = "https://cloud.ibm.com/docs/EventStreams?topic=EventStreams-getting-started"
description = "Secondary URL"
}
25 changes: 25 additions & 0 deletions solutions/security-enforced/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,28 @@ output "event_streams_mirroring_topic_patterns" {
description = "Mirroring topic patterns"
value = module.event_streams.mirroring_topic_patterns
}

output "next_steps_text" {
value = "Your Event Streams instance is ready."
description = "Next steps text"
}

output "next_step_primary_label" {
value = "Go to Event Streams instance"
description = "Primary label"
}

output "next_step_primary_url" {
value = "https://cloud.ibm.com/services/messagehub/${urlencode(module.event_streams.crn)}?paneId=manage"
description = "Primary URL"
}

output "next_step_secondary_label" {
value = "Learn more about Event Streams"
description = "Secondary label"
}

output "next_step_secondary_url" {
value = "https://cloud.ibm.com/docs/EventStreams?topic=EventStreams-getting-started"
description = "Secondary URL"
}