Skip to content

Commit c4d0b62

Browse files
authored
feat: Add next-steps URL for the DA (#528)
1 parent a37cf6e commit c4d0b62

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

solutions/fully-configurable/outputs.tf

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,28 @@ output "vpn_id" {
2626
description = "Client to Site VPN ID"
2727
value = module.vpn.vpn_server_id
2828
}
29+
30+
output "next_steps_text" {
31+
value = "Now, you can access your VPN server."
32+
description = "Next steps text"
33+
}
34+
35+
output "next_step_primary_label" {
36+
value = "Go to client-to-site VPN server"
37+
description = "Primary label"
38+
}
39+
40+
output "next_step_primary_url" {
41+
value = "https://cloud.ibm.com/infrastructure/network/vpnServers/${module.existing_vpc_crn_parser.region}~${module.vpn.vpn_server_id}/overview"
42+
description = "Primary URL for the Client-to-Site VPN instance"
43+
}
44+
45+
output "next_step_secondary_label" {
46+
value = "Learn more about client-to-site VPN servers"
47+
description = "Secondary label"
48+
}
49+
50+
output "next_step_secondary_url" {
51+
value = "https://cloud.ibm.com/docs/vpc?topic=vpc-vpn-client-to-site-overview&interface=ui"
52+
description = "Secondary URL"
53+
}

0 commit comments

Comments
 (0)