File tree Expand file tree Collapse file tree 5 files changed +54
-2
lines changed Expand file tree Collapse file tree 5 files changed +54
-2
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ 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. |
127128| <a name =" output_secrets_manager_guid " ></a > [ secrets\_ manager\_ guid] ( #output\_ secrets\_ manager\_ guid ) | GUID of Secrets Manager instance |
128129| <a name =" output_secrets_manager_id " ></a > [ secrets\_ manager\_ id] ( #output\_ secrets\_ manager\_ id ) | ID of the Secrets Manager instance |
129130| <a name =" output_secrets_manager_name " ></a > [ secrets\_ manager\_ name] ( #output\_ secrets\_ manager\_ name ) | Name of the Secrets Manager instance |
Original file line number Diff line number Diff line change @@ -37,4 +37,9 @@ 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+ }
4045# #############################################################################
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ output "secrets_manager_region" {
3434}
3535
3636output "next_steps_text" {
37- value = " Congratulations! You successfully deployed your changes. Next, view your Secrets Manager instance."
37+ value = " Congratulations! Click the link below to go your Secrets Manager instance. Refer to this deployment guide/documentation for more information ."
3838 description = " Next steps text"
3939}
4040
@@ -43,7 +43,23 @@ 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+
4652output "next_step_primary_url" {
47- value = " https://cloud.ibm.com/services/secrets-manager/ ${ local . secrets_manager_crn } "
53+ value = module . secrets_manager . secrets_manager_dashboard_url
4854 description = " primary url"
4955}
56+
57+ output "next_step_secondary_label" {
58+ value = " Check out related Deployable Architectures"
59+ description = " Secondary label"
60+ }
61+
62+ output "next_step_secondary_url" {
63+ value = " https://cloud.ibm.com/catalog?search=Secrets%20Manager%20label%3Adeployable_architecture#search_results"
64+ description = " Secondary url"
65+ }
Original file line number Diff line number Diff line change @@ -55,6 +55,11 @@ No resources.
5555
5656| Name | Description |
5757| ------| -------------|
58+ | <a name =" output_next_step_primary_label " ></a > [ next\_ step\_ primary\_ label] ( #output\_ next\_ step\_ primary\_ label ) | Primary label |
59+ | <a name =" output_next_step_primary_url " ></a > [ next\_ step\_ primary\_ url] ( #output\_ next\_ step\_ primary\_ url ) | primary url |
60+ | <a name =" output_next_step_secondary_label " ></a > [ next\_ step\_ secondary\_ label] ( #output\_ next\_ step\_ secondary\_ label ) | Secondary label |
61+ | <a name =" output_next_step_secondary_url " ></a > [ next\_ step\_ secondary\_ url] ( #output\_ next\_ step\_ secondary\_ url ) | Secondary url |
62+ | <a name =" output_next_steps_text " ></a > [ next\_ steps\_ text] ( #output\_ next\_ steps\_ text ) | Next steps text |
5863| <a name =" output_resource_group_id " ></a > [ resource\_ group\_ id] ( #output\_ resource\_ group\_ id ) | Resource group ID |
5964| <a name =" output_resource_group_name " ></a > [ resource\_ group\_ name] ( #output\_ resource\_ group\_ name ) | Resource group name |
6065| <a name =" output_secrets_manager_crn " ></a > [ secrets\_ manager\_ crn] ( #output\_ secrets\_ manager\_ crn ) | CRN of Secrets Manager instance. |
Original file line number Diff line number Diff line change @@ -22,3 +22,28 @@ 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 = " Congratulations! Click the link below to go your Secrets Manager instance. Refer to this deployment guide/documentation for more information."
28+ description = " Next steps text"
29+ }
30+
31+ output "next_step_primary_label" {
32+ value = " View Secrets Manager"
33+ description = " Primary label"
34+ }
35+
36+ output "next_step_primary_url" {
37+ value = module. secrets_manager . secrets_manager_dashboard_url
38+ description = " primary url"
39+ }
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+ }
You can’t perform that action at this time.
0 commit comments