removes region param from google_compute_backend_service (#10903)

* removes region param from backend_service

- this param was not being used in this service
- you need a regional_backend_service if you want to pass this

* deprecated region instead of outright removing

* put session affinity formatting back
This commit is contained in:
Zach Gershman 2017-01-18 15:10:43 -08:00 committed by Paul Stack
parent 00fad24a96
commit 627629639b

View File

@ -118,9 +118,10 @@ func resourceComputeBackendService() *schema.Resource {
},
"region": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Deprecated: "This parameter has been removed as it was never used",
},
"self_link": &schema.Schema{