From 749b363391bb06fd9d62e5b7fe643f459c26ad96 Mon Sep 17 00:00:00 2001 From: betsy-lichtenberg Date: Thu, 8 Apr 2021 16:08:41 -0700 Subject: [PATCH] chore: Fixed region tag in static route example (#274) --- examples/routes/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/routes/main.tf b/examples/routes/main.tf index 81e63238..4bad31cf 100644 --- a/examples/routes/main.tf +++ b/examples/routes/main.tf @@ -22,7 +22,7 @@ provider "null" { version = "~> 2.1" } -# [START routes_create] +# [START vpc_static_route_create] module "google_compute_route" { source = "terraform-google-modules/network/google//modules/routes" version = "~> 3.2.0" @@ -39,4 +39,4 @@ module "google_compute_route" { } ] } -# [END routes_create] +# [END vpc_static_route_create]