diff --git a/solutions/fully-configurable/outputs.tf b/solutions/fully-configurable/outputs.tf index b1ed76c..0da9e60 100644 --- a/solutions/fully-configurable/outputs.tf +++ b/solutions/fully-configurable/outputs.tf @@ -44,3 +44,28 @@ output "scc_workload_protection_access_key" { value = module.scc_wp.access_key sensitive = true } + +output "next_steps_text" { + value = "You can now configure and start using Security and Compliance Center Workload Protection." + description = "Next steps text" +} + +output "next_step_primary_label" { + value = "Go to SCC Workload Protection" + description = "Primary label" +} + +output "next_step_primary_url" { + value = "https://cloud.ibm.com/workload-protection/${module.scc_wp.guid}/overview" + description = "Primary URL" +} + +output "next_step_secondary_label" { + value = "Learn more about SCC Workload Protection" + description = "Secondary label" +} + +output "next_step_secondary_url" { + value = "https://cloud.ibm.com/docs/workload-protection?topic=workload-protection-getting-started" + description = "Secondary URL" +}