Skip to content

Commit 11e08b4

Browse files
committed
next steps
1 parent d1341bd commit 11e08b4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

solutions/fully-configurable/outputs.tf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,18 @@ output "secrets_manager_region" {
3232
value = local.secrets_manager_region
3333
description = "Region of the Secrets Manager instance"
3434
}
35+
36+
output "next_steps_text" {
37+
value = "Congragulations! You successfully deployed your changes. Next, view your Secrets Manager instance: ${var.existing_secrets_manager_crn == null ? module.secrets_manager.secrets_manager_name : data.ibm_resource_instance.existing_sm[0].resource_name}"
38+
description = "Next steps text"
39+
}
40+
41+
output "next_step_primary_label" {
42+
value = "SM Instance"
43+
description = "Primary label"
44+
}
45+
46+
output "next_step_primary_url" {
47+
value = "https://cloud.ibm.com/services/secrets-manager/${local.secrets_manager_crn}"
48+
description = "primary url"
49+
}

0 commit comments

Comments
 (0)