provider/google: Remove unsupported region from compute_url_map docs

When trying to run the example code with the most recent terraform
master you get the following errors:

```
2 error(s) occurred:

* google_compute_backend_service.home: "region": [REMOVED] region has been removed as it was never used
* google_compute_backend_service.login: "region": [REMOVED] region has been removed as it was never used
```

Hence remove it from the documentation.
This commit is contained in:
Christoph Tavan 2017-04-27 09:18:36 +02:00
parent 9b9144ba95
commit c853d91203
No known key found for this signature in database
GPG Key ID: D9B600C63A37FD28
1 changed files with 0 additions and 2 deletions

View File

@ -55,7 +55,6 @@ resource "google_compute_backend_service" "login" {
port_name = "http"
protocol = "HTTP"
timeout_sec = 10
region = "us-central1"
health_checks = ["${google_compute_http_health_check.default.self_link}"]
}
@ -65,7 +64,6 @@ resource "google_compute_backend_service" "home" {
port_name = "http"
protocol = "HTTP"
timeout_sec = 10
region = "us-central1"
health_checks = ["${google_compute_http_health_check.default.self_link}"]
}