Skip to content

Commit

Permalink
fix: typo in private-network firewall (#36)
Browse files Browse the repository at this point in the history
* Fix typo in private-network firewall

* Remove peering (trial)

* Revert "Remove peering (trial)"

This reverts commit 04fba3f.
  • Loading branch information
Matt Ford authored Jul 30, 2020
1 parent 91270da commit d5e63ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/private_network/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ module "datafusion_firewall" {
description = "Allow hosts in dataproc subnet to talk to each other on all ports"
direction = "INGRESS"
action = "allow"
ranges = [module.vpc.subnets["${var.region}/{var.dataproc_subnet}"].ip_cidr_range]
ranges = [module.vpc.subnets["${var.region}/${var.dataproc_subnet}"].ip_cidr_range]

use_service_accounts = false
rules = [{
Expand Down

0 comments on commit d5e63ab

Please sign in to comment.