diff --git a/solutions/fully-configurable/outputs.tf b/solutions/fully-configurable/outputs.tf index 52332205..37bec90c 100644 --- a/solutions/fully-configurable/outputs.tf +++ b/solutions/fully-configurable/outputs.tf @@ -32,3 +32,18 @@ output "secrets_manager_region" { value = local.secrets_manager_region description = "Region of the Secrets Manager instance" } + +output "next_steps_text" { + value = "Now, you can use Secrets Manager to manage sensitive data like passwords and API keys." + description = "Next steps text" +} + +output "next_step_primary_label" { + value = "Go to Secrets Manager" + description = "Primary label" +} + +output "next_step_primary_url" { + value = "https://cloud.ibm.com/services/secrets-manager/${local.secrets_manager_crn}" + description = "primary url" +} diff --git a/solutions/security-enforced/outputs.tf b/solutions/security-enforced/outputs.tf index d10dfacc..01ae5c1d 100644 --- a/solutions/security-enforced/outputs.tf +++ b/solutions/security-enforced/outputs.tf @@ -22,3 +22,18 @@ output "secrets_manager_crn" { description = "CRN of Secrets Manager instance." value = module.secrets_manager.secrets_manager_crn } + +output "next_steps_text" { + value = "Now, you can use Secrets Manager to manage sensitive data like passwords and API keys." + description = "Next steps text" +} + +output "next_step_primary_label" { + value = "Go to Secrets Manager" + description = "Primary label" +} + +output "next_step_primary_url" { + value = "https://cloud.ibm.com/services/secrets-manager/${module.secrets_manager.secrets_manager_crn}" + description = "primary url" +}