Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions patterns/vpc/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,33 @@ output "schematics_workspace_id" {
}

##############################################################################

##############################################################################
# VPC Next Steps URLs outputs
##############################################################################

output "next_steps_text" {
value = "Your Virtual Private Clouds are ready."
description = "Next steps text"
}

output "next_step_primary_label" {
value = "Go to Virtual Private Clouds"
description = "Primary label"
}

output "next_step_primary_url" {
value = "https://cloud.ibm.com/infrastructure/network/vpcs"
description = "Primary URL"
}

output "next_step_secondary_label" {
value = "Learn more about VPCs"
description = "Secondary label"
}

output "next_step_secondary_url" {
value = "https://cloud.ibm.com/docs/vpc?topic=vpc-about-vpc"
description = "Secondary URL"
}
##############################################################################
26 changes: 26 additions & 0 deletions patterns/vsi-extension/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,29 @@ output "vsi_data" {
description = "Details of the VSI including name, id, zone, and primary ipv4 address, VPC Name, and floating IP."
value = module.vsi
}

output "next_steps_text" {
value = "Your Virtual Server Instances are ready."
description = "Next steps text"
}

output "next_step_primary_label" {
value = "Go to Virtual Server Instances"
description = "Primary label"
}

output "next_step_primary_url" {
value = "https://cloud.ibm.com/infrastructure/compute/vs"
description = "Primary URL"
}


output "next_step_secondary_label" {
value = "Expose app to internet"
description = "Secondary label"
}

output "next_step_secondary_url" {
value = "https://cloud.ibm.com/docs/secure-infrastructure-vpc?topic=secure-infrastructure-vpc-access-public-app"
description = "Secondary URL"
}
27 changes: 26 additions & 1 deletion patterns/vsi-quickstart/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,33 @@
##############################################################################
# Output Variables
##############################################################################

output "config" {
description = "Output configuration as encoded JSON"
value = module.landing_zone.config
}

output "next_steps_text" {
value = module.landing_zone.next_steps_text
description = "Next steps text"
}

output "next_step_primary_label" {
value = module.landing_zone.next_step_primary_label
description = "Primary label"
}

output "next_step_primary_url" {
value = module.landing_zone.next_step_primary_url
description = "Primary URL"
}


output "next_step_secondary_label" {
value = module.landing_zone.next_step_secondary_label
description = "Secondary label"
}

output "next_step_secondary_url" {
value = module.landing_zone.next_step_secondary_url
description = "Secondary URL"
}
27 changes: 27 additions & 0 deletions patterns/vsi/module/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,30 @@ output "config" {
}

##############################################################################


output "next_steps_text" {
value = "Your Virtual Server Instances are ready."
description = "Next steps text"
}

output "next_step_primary_label" {
value = "Go to Virtual Server Instances"
description = "Primary label"
}

output "next_step_primary_url" {
value = "https://cloud.ibm.com/infrastructure/compute/vs"
description = "Primary URL"
}


output "next_step_secondary_label" {
value = "Expose app to internet"
description = "Secondary label"
}

output "next_step_secondary_url" {
value = "https://cloud.ibm.com/docs/secure-infrastructure-vpc?topic=secure-infrastructure-vpc-access-public-app"
description = "Secondary URL"
}
26 changes: 26 additions & 0 deletions patterns/vsi/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,29 @@ output "config" {
description = "Output configuration as encoded JSON"
value = module.vsi_landing_zone.config
}

output "next_steps_text" {
value = module.vsi_landing_zone.next_steps_text
description = "Next steps text"
}

output "next_step_primary_label" {
value = module.vsi_landing_zone.next_step_primary_label
description = "Primary label"
}

output "next_step_primary_url" {
value = module.vsi_landing_zone.next_step_primary_url
description = "Primary URL"
}


output "next_step_secondary_label" {
value = module.vsi_landing_zone.next_step_secondary_label
description = "Secondary label"
}

output "next_step_secondary_url" {
value = module.vsi_landing_zone.next_step_secondary_url
description = "Secondary URL"
}