From eca496d8f85cb3d52f355d73b3af5da5cadd7c40 Mon Sep 17 00:00:00 2001 From: Christian Benincasa Date: Wed, 7 Aug 2019 19:23:41 -0600 Subject: [PATCH] Remove bad option from example for compute_ssl_certificate When using the example provided, the following error is returned: ``` Error: Unsupported argument on data.tf line 25, in data "google_compute_ssl_certificate" "api_cert": 25: location = "us-east1-a" An argument named "location" is not expected here. ``` The available arguments doesn't list `location` as a supported argument. Remove it from the example. --- website/docs/d/datasource_compute_ssl_certificate.html.markdown | 1 - 1 file changed, 1 deletion(-) diff --git a/website/docs/d/datasource_compute_ssl_certificate.html.markdown b/website/docs/d/datasource_compute_ssl_certificate.html.markdown index e7e4efed82a..6e3872fa41b 100644 --- a/website/docs/d/datasource_compute_ssl_certificate.html.markdown +++ b/website/docs/d/datasource_compute_ssl_certificate.html.markdown @@ -15,7 +15,6 @@ Get info about a Google Compute SSL Certificate from its name. ```tf data "google_compute_ssl_certificate" "my_cert" { name = "my-cert" - location = "us-east1-a" } output "certificate" {