Skip to content

Commit 9d7cf09

Browse files
authored
feat: Add "Next steps" to DA (#372)
1 parent 736c010 commit 9d7cf09

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-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 = "Now, you can use Secrets Manager to manage sensitive data like passwords and API keys."
38+
description = "Next steps text"
39+
}
40+
41+
output "next_step_primary_label" {
42+
value = "Go to Secrets Manager"
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+
}

solutions/security-enforced/outputs.tf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,18 @@ output "secrets_manager_crn" {
2222
description = "CRN of Secrets Manager instance."
2323
value = module.secrets_manager.secrets_manager_crn
2424
}
25+
26+
output "next_steps_text" {
27+
value = "Now, you can use Secrets Manager to manage sensitive data like passwords and API keys."
28+
description = "Next steps text"
29+
}
30+
31+
output "next_step_primary_label" {
32+
value = "Go to Secrets Manager"
33+
description = "Primary label"
34+
}
35+
36+
output "next_step_primary_url" {
37+
value = "https://cloud.ibm.com/services/secrets-manager/${module.secrets_manager.secrets_manager_crn}"
38+
description = "primary url"
39+
}

0 commit comments

Comments
 (0)