From e962d07e0429c9bf692edd6312cd04e1836bd9fe Mon Sep 17 00:00:00 2001 From: Julio Castillo Date: Tue, 31 Jan 2023 14:37:13 +0100 Subject: [PATCH] Fix tests/linting --- modules/net-glb/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/modules/net-glb/README.md b/modules/net-glb/README.md index ad770f8f..8cd3f353 100644 --- a/modules/net-glb/README.md +++ b/modules/net-glb/README.md @@ -220,11 +220,11 @@ This example shows how to use the module with a manage instance group as backend ```hcl module "win-template" { - source = "./fabric/modules/compute-vm" - project_id = "myprj" - zone = "europe-west8-a" - name = "win-template" - instance_type = "n2d-standard-2" + source = "./fabric/modules/compute-vm" + project_id = "myprj" + zone = "europe-west8-a" + name = "win-template" + instance_type = "n2d-standard-2" create_template = true boot_disk = { image = "projects/windows-cloud/global/images/windows-server-2019-dc-v20221214" @@ -240,10 +240,10 @@ module "win-template" { } module "win-mig" { - source = "./fabric/modules/compute-mig" - project_id = "myprj" - location = "europe-west8-a" - name = "win-mig" + source = "./fabric/modules/compute-mig" + project_id = "myprj" + location = "europe-west8-a" + name = "win-mig" instance_template = module.win-template.template.self_link autoscaler_config = { max_replicas = 3 @@ -255,7 +255,7 @@ module "win-mig" { } } } - named_ports { + named_ports = { http = 80 } }