From 54ea8bb732515dcfdd16b763fb8b1fa07f12ea3c Mon Sep 17 00:00:00 2001 From: Philip Cristiano Date: Wed, 6 Dec 2017 13:15:42 -0500 Subject: [PATCH] examples: Fix credentials key (#821) This is out of date and now uses `credentials` as the key --- examples/vpn/vpn.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/vpn/vpn.tf b/examples/vpn/vpn.tf index a588fd53..c780a1a6 100644 --- a/examples/vpn/vpn.tf +++ b/examples/vpn/vpn.tf @@ -1,8 +1,8 @@ # An example of how to connect two GCE networks with a VPN provider "google" { - account_file = "${file("~/gce/account.json")}" - project = "${var.project}" - region = "${var.region1}" + credentials = "${file("~/gce/account.json")}" + project = "${var.project}" + region = "${var.region1}" } # Create the two networks we want to join. They must have separate, internal