Skip to content

Commit

Permalink
Remove bad option from example for compute_ssl_certificate docs (#4185)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
chrisbenincasa authored and danawillow committed Aug 14, 2019
1 parent d120333 commit 302d2a2
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 302d2a2

Please sign in to comment.