provider/google: remove the backend region field
Remove the field region on compute_backend_service as it has been deprecated a while now and was never used to begin with.
This commit is contained in:
parent
4d6242dfe0
commit
3b71036877
|
@ -118,10 +118,10 @@ func resourceComputeBackendService() *schema.Resource {
|
||||||
},
|
},
|
||||||
|
|
||||||
"region": &schema.Schema{
|
"region": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
ForceNew: true,
|
ForceNew: true,
|
||||||
Deprecated: "This parameter has been removed as it was never used",
|
Removed: "region has been removed as it was never used",
|
||||||
},
|
},
|
||||||
|
|
||||||
"self_link": &schema.Schema{
|
"self_link": &schema.Schema{
|
||||||
|
|
Loading…
Reference in New Issue