From 8a7aa397efcd8502fe1f6748f1fc67a9d2c44566 Mon Sep 17 00:00:00 2001 From: Julio Diez Date: Mon, 30 Jan 2023 20:13:38 +0100 Subject: [PATCH] Add purpose to config files --- .../cloud-run-explore/config/custom-url.tfvars | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/blueprints/serverless/cloud-run-explore/config/custom-url.tfvars b/blueprints/serverless/cloud-run-explore/config/custom-url.tfvars index 6aa040bd7..79b616c38 100644 --- a/blueprints/serverless/cloud-run-explore/config/custom-url.tfvars +++ b/blueprints/serverless/cloud-run-explore/config/custom-url.tfvars @@ -1,3 +1,10 @@ +### +### Purpose of this configuration file. +### +### Create a Cloud Run service with a custom domain using an HTTPS LB. +### Block requests not coming from the LB. +### + # Add an HTTPS Load Balancer in front of the Cloud Run service glb_create = true @@ -7,5 +14,6 @@ glb_create = true # https://cloud.google.com/load-balancing/docs/ssl-certificates/google-managed-certs#update-dns custom_domain = "cloud-run-explore.example.org" -# Ingress sources. Allow internal traffic and requests from the LB +# Ingress sources. Allow internal traffic and requests from the LB. +# To allow access through the default URL set this value to "all" ingress_settings = "internal-and-cloud-load-balancing"