Skip to content

Commit d785b73

Browse files
committed
remove dashboard_url output
1 parent b0ad0bb commit d785b73

File tree

4 files changed

+3
-15
lines changed

4 files changed

+3
-15
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ You need the following permissions to run this module.
124124
| <a name="output_secret_groups"></a> [secret\_groups](#output\_secret\_groups) | IDs of the created Secret Group |
125125
| <a name="output_secrets"></a> [secrets](#output\_secrets) | List of secret mananger secret config data |
126126
| <a name="output_secrets_manager_crn"></a> [secrets\_manager\_crn](#output\_secrets\_manager\_crn) | CRN of the Secrets Manager instance |
127-
| <a name="output_secrets_manager_dashboard_url"></a> [secrets\_manager\_dashboard\_url](#output\_secrets\_manager\_dashboard\_url) | Secrets Manager dashboard url. |
128127
| <a name="output_secrets_manager_guid"></a> [secrets\_manager\_guid](#output\_secrets\_manager\_guid) | GUID of Secrets Manager instance |
129128
| <a name="output_secrets_manager_id"></a> [secrets\_manager\_id](#output\_secrets\_manager\_id) | ID of the Secrets Manager instance |
130129
| <a name="output_secrets_manager_name"></a> [secrets\_manager\_name](#output\_secrets\_manager\_name) | Name of the Secrets Manager instance |

outputs.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,4 @@ output "secrets" {
3737
value = module.secrets.secrets
3838
description = "List of secret mananger secret config data"
3939
}
40-
41-
output "secrets_manager_dashboard_url" {
42-
description = "Secrets Manager dashboard url."
43-
value = var.existing_sm_instance_crn != null ? "" : ibm_resource_instance.secrets_manager_instance[0].dashboard_url
44-
}
4540
##############################################################################

solutions/fully-configurable/outputs.tf

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,8 @@ output "next_step_primary_label" {
4343
description = "Primary label"
4444
}
4545

46-
47-
output "secrets_manager_dashboard_url" {
48-
description = "Secrets Manager dashboard url."
49-
value = var.existing_secrets_manager_crn != null ? "" : module.secrets_manager.secrets_manager_dashboard_url
50-
}
51-
5246
output "next_step_primary_url" {
53-
value = module.secrets_manager.secrets_manager_dashboard_url
47+
value = "https://cloud.ibm.com/services/secrets-manager/${local.secrets_manager_crn}"
5448
description = "primary url"
5549
}
5650

solutions/security-enforced/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ 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 guide/documentation for more information."
27+
value = "Congratulations! Click the link below to go your Secrets Manager instance. Refer to this deployment's guide/documentation for more information."
2828
description = "Next steps text"
2929
}
3030

@@ -34,7 +34,7 @@ output "next_step_primary_label" {
3434
}
3535

3636
output "next_step_primary_url" {
37-
value = module.secrets_manager.secrets_manager_dashboard_url
37+
value = "https://cloud.ibm.com/services/secrets-manager/${module.secrets_manager.secrets_manager_crn}"
3838
description = "primary url"
3939
}
4040

0 commit comments

Comments
 (0)