provider/openstack: Deprecate openstack_lb_pool_v1 member attribute
This commit marks the "member" attribute of the openstack_lb_pool_v1 resource as being deprecated. Users should begin migrating to the openstack_lb_member_v1 resource.
This commit is contained in:
parent
124e0906e1
commit
4ca5c948b6
|
@ -64,8 +64,9 @@ func resourceLBPoolV1() *schema.Resource {
|
||||||
Computed: true,
|
Computed: true,
|
||||||
},
|
},
|
||||||
"member": &schema.Schema{
|
"member": &schema.Schema{
|
||||||
Type: schema.TypeSet,
|
Type: schema.TypeSet,
|
||||||
Optional: true,
|
Deprecated: "Use openstack_lb_member_v1 instead. This attribute will be removed in a future version.",
|
||||||
|
Optional: true,
|
||||||
Elem: &schema.Resource{
|
Elem: &schema.Resource{
|
||||||
Schema: map[string]*schema.Schema{
|
Schema: map[string]*schema.Schema{
|
||||||
"region": &schema.Schema{
|
"region": &schema.Schema{
|
||||||
|
|
Loading…
Reference in New Issue