Skip to content

Commit 9a45040

Browse files
committed
align next steps with content design feedback
1 parent b008de2 commit 9a45040

File tree

3 files changed

+5
-25
lines changed

3 files changed

+5
-25
lines changed

solutions/fully-configurable/outputs.tf

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,26 +34,16 @@ output "secrets_manager_region" {
3434
}
3535

3636
output "next_steps_text" {
37-
value = "Congratulations! Click the link below to go your Secrets Manager instance. Refer to this deployment guide/documentation for more information."
37+
value = "Now, you can use Secrets Manager to manage sensitive data like passwords and API keys."
3838
description = "Next steps text"
3939
}
4040

4141
output "next_step_primary_label" {
42-
value = "View Secrets Manager"
42+
value = "Go to Secrets Manager"
4343
description = "Primary label"
4444
}
4545

4646
output "next_step_primary_url" {
4747
value = "https://cloud.ibm.com/services/secrets-manager/${local.secrets_manager_crn}"
4848
description = "primary url"
4949
}
50-
51-
output "next_step_secondary_label" {
52-
value = "Check out related Deployable Architectures"
53-
description = "Secondary label"
54-
}
55-
56-
output "next_step_secondary_url" {
57-
value = "https://cloud.ibm.com/catalog?search=Secrets%20Manager%20label%3Adeployable_architecture#search_results"
58-
description = "Secondary url"
59-
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Cloud automation for Secrets Manager (Security enforced)
22

3-
:exclamation: **Important:** This solution is not intended to be called by other modules because it contains a provider configuration and is not compatible with the `for_each`, `count`, and `depends_on` arguments. For more information, see [Providers Within Modules](https://developer.hashicorp.com/terraform/language/modules/develop/providers).
3+
:exclamation: **Important:** This solution is not intended to be called by other modules because it contains a provider configuration and is not compatible with the `for_each`, `count`, and `depends_on` arguments. For more information, see [Providers Within Modules](https://developer.hashicorp.com/terraform/language/modules/develop/providers).

solutions/security-enforced/outputs.tf

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,16 @@ output "secrets_manager_crn" {
2424
}
2525

2626
output "next_steps_text" {
27-
value = "Congratulations! Click the link below to go your Secrets Manager instance. Refer to this deployment's guide/documentation for more information."
27+
value = "Now, you can use Secrets Manager to manage sensitive data like passwords and API keys."
2828
description = "Next steps text"
2929
}
3030

3131
output "next_step_primary_label" {
32-
value = "View Secrets Manager"
32+
value = "Go to Secrets Manager"
3333
description = "Primary label"
3434
}
3535

3636
output "next_step_primary_url" {
3737
value = "https://cloud.ibm.com/services/secrets-manager/${module.secrets_manager.secrets_manager_crn}"
3838
description = "primary url"
3939
}
40-
41-
output "next_step_secondary_label" {
42-
value = "Check out related Deployable Architectures"
43-
description = "Secondary label"
44-
}
45-
46-
output "next_step_secondary_url" {
47-
value = "https://cloud.ibm.com/catalog?search=Secrets%20Manager%20label%3Adeployable_architecture#search_results"
48-
description = "Secondary url"
49-
}

0 commit comments

Comments
 (0)