Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
18 changes: 9 additions & 9 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"crn:v1:bluemix:public:iam::::role:Viewer"
],
"service_name": "Resource group only",
"notes":"Viewer access is required in the resource group you want to provision in."
"notes": "Viewer access is required in the resource group you want to provision in."
},
{
"role_crns": [
Expand Down Expand Up @@ -1084,19 +1084,19 @@
"notes": "Required for creating Virtual Private Cloud (VPC)."
},
{
"service_name": "cloud-object-storage",
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager",
"crn:v1:bluemix:public:iam::::role:Editor"
],
"notes": "Required for creating the OpenShift cluster's internal registry storage bucket."
"service_name": "cloud-object-storage",
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager",
"crn:v1:bluemix:public:iam::::role:Editor"
],
"notes": "Required for creating the OpenShift cluster's internal registry storage bucket."
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::role:Viewer"
],
"service_name": "Resource group only",
"notes":"Viewer access is required in the resource group you want to provision in."
"notes": "Viewer access is required in the resource group you want to provision in."
}
],
"architecture": {
Expand Down Expand Up @@ -1246,7 +1246,7 @@
},
{
"key": "access_tags",
"hidden":true,
"hidden": true,
"custom_config": {
"type": "array",
"grouping": "deployment",
Expand Down
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 = module.ocp_base.ingress_hostname
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"
}