Skip to content
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions solutions/quickstart/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,28 @@ output "master_status" {
description = "The current status of the Kubernetes master node in the cluster."
value = module.ocp_base.master_status
}

output "next_steps_text" {
value = "Now, you can use Openshift Cluster to build, deploy, and manage containerized applications."
description = "Next steps text"
}

output "next_step_primary_label" {
value = "Go to Openshift Cluster dashboard"
description = "Primary label"
}

output "next_step_primary_url" {
value = "https://console-openshift-console.${module.ocp_base.ingress_hostname}/dashboards"
description = "primary url"
}

output "next_step_secondary_label" {
value = "Openshift Cluster Overview"
description = "Secondary label"
}

output "next_step_secondary_url" {
value = "https://cloud.ibm.com/containers/cluster-management/clusters/${module.ocp_base.cluster_id}/overview"
description = "secondary url"
}