Skip to content

Commit 08d646f

Browse files
authored
feat: added "Next steps" to DA (#781)
1 parent 5f5c836 commit 08d646f

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

solutions/fully-configurable/outputs.tf

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,28 @@ output "secrets_manager_integration_config" {
106106
description = "Information about the Secrets Manager instance that is used to store the Ingress certificates."
107107
value = module.ocp_base.secrets_manager_integration_config
108108
}
109+
110+
output "next_steps_text" {
111+
value = "Your Red Hat OpenShift cluster is ready. You can now build, deploy, and manage containerized applications."
112+
description = "Next steps text"
113+
}
114+
115+
output "next_step_primary_label" {
116+
value = "OpenShift cluster web console"
117+
description = "Primary label"
118+
}
119+
120+
output "next_step_primary_url" {
121+
value = "https://console-openshift-console.${module.ocp_base.ingress_hostname}/dashboards"
122+
description = "primary url"
123+
}
124+
125+
output "next_step_secondary_label" {
126+
value = "Red Hat OpenShift cluster overview page"
127+
description = "Secondary label"
128+
}
129+
130+
output "next_step_secondary_url" {
131+
value = "https://cloud.ibm.com/containers/cluster-management/clusters/${module.ocp_base.cluster_id}/overview"
132+
description = "secondary url"
133+
}

solutions/quickstart/outputs.tf

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,28 @@ output "master_status" {
5656
description = "The current status of the Kubernetes master node in the cluster."
5757
value = module.ocp_base.master_status
5858
}
59+
60+
output "next_steps_text" {
61+
value = "Your Red Hat OpenShift cluster is ready. You can now build, deploy, and manage containerized applications."
62+
description = "Next steps text"
63+
}
64+
65+
output "next_step_primary_label" {
66+
value = "OpenShift cluster web console"
67+
description = "Primary label"
68+
}
69+
70+
output "next_step_primary_url" {
71+
value = "https://console-openshift-console.${module.ocp_base.ingress_hostname}/dashboards"
72+
description = "primary url"
73+
}
74+
75+
output "next_step_secondary_label" {
76+
value = "Red Hat OpenShift cluster overview page"
77+
description = "Secondary label"
78+
}
79+
80+
output "next_step_secondary_url" {
81+
value = "https://cloud.ibm.com/containers/cluster-management/clusters/${module.ocp_base.cluster_id}/overview"
82+
description = "secondary url"
83+
}

0 commit comments

Comments
 (0)