From 8954acac1a0d1ec71653030c66ebb38f633f6f82 Mon Sep 17 00:00:00 2001 From: Marcin Date: Tue, 27 Aug 2019 18:30:56 +0300 Subject: [PATCH] Move port to vars --- gcp/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcp/main.tf b/gcp/main.tf index 99b614d..109a691 100644 --- a/gcp/main.tf +++ b/gcp/main.tf @@ -38,7 +38,7 @@ resource "google_compute_firewall" "default" { allow { protocol = "udp" - ports = ["27020"] + ports = ["${var.l4d2_port}"] } source_ranges = ["0.0.0.0/0"]