From c607b466f6ae4d12f8cd804189e2d83b3753da4e Mon Sep 17 00:00:00 2001 From: Julien Phalip Date: Wed, 14 Feb 2018 16:16:42 -0800 Subject: [PATCH] Fix VPN gateway data source schema for "network" attribute. (#1086) --- google/data_source_google_compute_vpn_gateway.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/data_source_google_compute_vpn_gateway.go b/google/data_source_google_compute_vpn_gateway.go index 47cbe8cb380..e7ddf9217cb 100644 --- a/google/data_source_google_compute_vpn_gateway.go +++ b/google/data_source_google_compute_vpn_gateway.go @@ -41,7 +41,7 @@ func dataSourceGoogleComputeVpnGateway() *schema.Resource { "network": &schema.Schema{ Type: schema.TypeString, - Optional: true, + Computed: true, }, }, }