Skip to content

Commit

Permalink
removed double quotes (#3926) (#7141)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
modular-magician committed Aug 28, 2020
1 parent ee62981 commit ca85af2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .changelog/3926.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none

```
2 changes: 1 addition & 1 deletion website/docs/d/container_engine_versions.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ support the same version.

```hcl
data "google_container_engine_versions" "central1b" {
provider = "google-beta"
provider = google-beta
location = "us-central1-b"
version_prefix = "1.12."
}
Expand Down
4 changes: 2 additions & 2 deletions website/docs/guides/provider_reference.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ the Google provider.

```hcl
resource "google_compute_instance" "ga-instance" {
provider = "google"
provider = google
# ...
}
resource "google_compute_instance" "beta-instance" {
provider = "google-beta"
provider = google-beta
# ...
}
Expand Down

0 comments on commit ca85af2

Please sign in to comment.