Skip to content

Commit

Permalink
fix: removed outputs from the firewall example
Browse files Browse the repository at this point in the history
  • Loading branch information
tfhartmann committed Sep 25, 2019
1 parent e970aa6 commit 1dd8c4e
Showing 1 changed file with 0 additions and 45 deletions.
45 changes: 0 additions & 45 deletions examples/submodule_firewall/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit 1dd8c4e

Please sign in to comment.