Skip to content

Commit

Permalink
Merge pull request hashicorp#3735 from lwander/b-gcp-container-cluste…
Browse files Browse the repository at this point in the history
…r-document-scopes

provider/google: Improve Container Scope Example Documentation
  • Loading branch information
lwander committed Dec 15, 2015
2 parents 04e7c1a + 843c04e commit a4d9ae3
Showing 1 changed file with 16 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,23 @@ description: |-

```
resource "google_container_cluster" "primary" {
name = "marcellus-wallace"
zone = "us-central1-a"
initial_node_count = 3
name = "marcellus-wallace"
zone = "us-central1-a"
initial_node_count = 3
master_auth {
username = "mr.yoda"
password = "adoy.rm"
}
master_auth {
username = "mr.yoda"
password = "adoy.rm"
}
node_config {
oauth_scopes = [
"https://www.googleapis.com/auth/compute",
"https://www.googleapis.com/auth/devstorage.read_only",
"https://www.googleapis.com/auth/logging.write",
"https://www.googleapis.com/auth/monitoring"
]
}
}
```

Expand Down

0 comments on commit a4d9ae3

Please sign in to comment.