From 1dd8c4e76a8040765ff46b174ee138dae60e2da9 Mon Sep 17 00:00:00 2001 From: Tim Hartmann Date: Wed, 25 Sep 2019 10:13:25 -0400 Subject: [PATCH] fix: removed outputs from the firewall example --- examples/submodule_firewall/outputs.tf | 45 -------------------------- 1 file changed, 45 deletions(-) diff --git a/examples/submodule_firewall/outputs.tf b/examples/submodule_firewall/outputs.tf index 0586334ff..f687da741 100644 --- a/examples/submodule_firewall/outputs.tf +++ b/examples/submodule_firewall/outputs.tf @@ -28,48 +28,3 @@ output "admin_ranges" { description = "Firewall attributes for admin ranges." value = module.test-firewall-submodule.admin_ranges } - -output "network_self_link" { - value = module.test-vpc-module.network_self_link - description = "The URI of the VPC being created" -} - -output "svpc_host_project_id" { - value = module.test-vpc-module.svpc_host_project_id - description = "Shared VPC host project id." -} - -output "subnets_names" { - value = module.test-vpc-module.subnets_names - description = "The names of the subnets being created" -} - -output "subnets_ips" { - value = module.test-vpc-module.subnets_ips - description = "The IP and cidrs of the subnets being created" -} - -output "subnets_regions" { - value = module.test-vpc-module.subnets_regions - description = "The region where subnets will be created" -} - -output "subnets_private_access" { - value = module.test-vpc-module.subnets_private_access - description = "Whether the subnets will have access to Google API's without a public IP" -} - -output "subnets_flow_logs" { - value = module.test-vpc-module.subnets_flow_logs - description = "Whether the subnets will have VPC flow logs enabled" -} - -output "subnets_secondary_ranges" { - value = module.test-vpc-module.subnets_secondary_ranges - description = "The secondary ranges associated with these subnets" -} - -output "routes" { - value = module.test-vpc-module.routes - description = "The routes associated with this VPC" -}