Deprecate unused "region" attribute in gcp global_forwarding_rule

This commit is contained in:
Seth Vargo 2016-04-10 12:22:44 -04:00
parent 7e5ca60369
commit d5a9e9b554
1 changed files with 7 additions and 6 deletions

View File

@ -49,12 +49,6 @@ func resourceComputeGlobalForwardingRule() *schema.Resource {
ForceNew: true,
},
"region": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ForceNew: true,
},
"self_link": &schema.Schema{
Type: schema.TypeString,
Computed: true,
@ -64,6 +58,13 @@ func resourceComputeGlobalForwardingRule() *schema.Resource {
Type: schema.TypeString,
Required: true,
},
"region": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Deprecated: "Please remove this attribute (it was never used)",
},
},
}
}