diff --git a/acceptance/openstack/er/route_tables_test.go b/acceptance/openstack/er/route_tables_test.go index 6456af7f4..c630311bf 100644 --- a/acceptance/openstack/er/route_tables_test.go +++ b/acceptance/openstack/er/route_tables_test.go @@ -72,6 +72,8 @@ func TestRouteTableLifeCycle(t *testing.T) { th.AssertNoErr(t, err) th.AssertEquals(t, createRouteTableOpts.Name, createRtResp.Name) th.AssertEquals(t, *createRouteTableOpts.Description, createRtResp.Description) + th.AssertEquals(t, createRtResp.IsDefaultAssociation, false) + th.AssertEquals(t, createRtResp.IsDefaultPropagation, false) err = waitForRouteTableAvailable(client, 300, createResp.Instance.ID, createRtResp.ID) th.AssertNoErr(t, err) diff --git a/openstack/er/v3/route_table/Create.go b/openstack/er/v3/route_table/Create.go index aa325752e..4c8404422 100644 --- a/openstack/er/v3/route_table/Create.go +++ b/openstack/er/v3/route_table/Create.go @@ -43,6 +43,7 @@ type RouteTable struct { Name string `json:"name"` Description string `json:"description"` IsDefaultAssociation bool `json:"is_default_association"` + IsDefaultPropagation bool `json:"is_default_propagation"` State string `json:"state"` Tags []tags.ResourceTag `json:"tags"` BgpOptions *BgpOptions `json:"bgp_options"`