From 3f74accbbb8ab005c117f186160f81d185736b1d Mon Sep 17 00:00:00 2001 From: Kayce Elgin <14020716+ThadCastl3@users.noreply.github.com> Date: Tue, 23 Apr 2024 14:04:41 -0400 Subject: [PATCH] Update deploy_langflow_gcp.sh (#1752) Sytnax error on line 38 ':tcp:3389', removed leading colon -> 'tcp:3389' --- scripts/gcp/deploy_langflow_gcp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gcp/deploy_langflow_gcp.sh b/scripts/gcp/deploy_langflow_gcp.sh index fbf87099a..cae2d0c93 100644 --- a/scripts/gcp/deploy_langflow_gcp.sh +++ b/scripts/gcp/deploy_langflow_gcp.sh @@ -35,7 +35,7 @@ fi # Create a firewall rule to allow IAP traffic firewall_iap_exists=$(gcloud compute firewall-rules list --filter="name=allow-iap" --format="value(name)") if [[ -z "$firewall_iap_exists" ]]; then - gcloud compute firewall-rules create allow-iap --network $VPC_NAME --allow tcp:80,tcp:443,tcp:22,:tcp:3389 --source-ranges 35.235.240.0/20 --direction INGRESS + gcloud compute firewall-rules create allow-iap --network $VPC_NAME --allow tcp:80,tcp:443,tcp:22,tcp:3389 --source-ranges 35.235.240.0/20 --direction INGRESS fi # Define the startup script as a multiline Bash here-doc