-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactoring from a single resource with all routes to route specific …
…resources
- Loading branch information
Showing
5 changed files
with
547 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
214 changes: 214 additions & 0 deletions
214
builtin/providers/openstack/resource_openstack_networking_router_route_v2.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,214 @@ | ||
package openstack | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
|
||
"github.com/hashicorp/terraform/helper/schema" | ||
|
||
"github.com/rackspace/gophercloud" | ||
"github.com/rackspace/gophercloud/openstack/networking/v2/extensions/layer3/routers" | ||
) | ||
|
||
func resourceNetworkingRouterRouteV2() *schema.Resource { | ||
return &schema.Resource{ | ||
Create: resourceNetworkingRouterRouteV2Create, | ||
Read: resourceNetworkingRouterRouteV2Read, | ||
Delete: resourceNetworkingRouterRouteV2Delete, | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"region": &schema.Schema{ | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
DefaultFunc: schema.EnvDefaultFunc("OS_REGION_NAME", ""), | ||
}, | ||
"router_id": &schema.Schema{ | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"destination_cidr": &schema.Schema{ | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
"next_hop": &schema.Schema{ | ||
Type: schema.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
}, | ||
}, | ||
} | ||
} | ||
|
||
func resourceNetworkingRouterRouteV2Create(d *schema.ResourceData, meta interface{}) error { | ||
|
||
routerId := d.Get("router_id").(string) | ||
osMutexKV.Lock(routerId) | ||
defer osMutexKV.Unlock(routerId) | ||
|
||
var destCidr string = d.Get("destination_cidr").(string) | ||
var nextHop string = d.Get("next_hop").(string) | ||
|
||
config := meta.(*Config) | ||
networkingClient, err := config.networkingV2Client(d.Get("region").(string)) | ||
if err != nil { | ||
return fmt.Errorf("Error creating OpenStack networking client: %s", err) | ||
} | ||
|
||
n, err := routers.Get(networkingClient, routerId).Extract() | ||
if err != nil { | ||
httpError, ok := err.(*gophercloud.UnexpectedResponseCodeError) | ||
if !ok { | ||
return fmt.Errorf("Error retrieving OpenStack Neutron Router: %s", err) | ||
} | ||
|
||
if httpError.Actual == 404 { | ||
d.SetId("") | ||
return nil | ||
} | ||
return fmt.Errorf("Error retrieving OpenStack Neutron Router: %s", err) | ||
} | ||
|
||
var updateOpts routers.UpdateOpts | ||
var routeExists bool = false | ||
|
||
var rts []routers.Route = n.Routes | ||
for _, r := range rts { | ||
|
||
if r.DestinationCIDR == destCidr && r.NextHop == nextHop { | ||
routeExists = true | ||
break | ||
} | ||
} | ||
|
||
if !routeExists { | ||
|
||
if destCidr != "" && nextHop != "" { | ||
r := routers.Route{DestinationCIDR: destCidr, NextHop: nextHop} | ||
log.Printf( | ||
"[INFO] Adding route %s", r) | ||
rts = append(rts, r) | ||
} | ||
|
||
updateOpts.Routes = rts | ||
|
||
log.Printf("[DEBUG] Updating Router %s with options: %+v", routerId, updateOpts) | ||
|
||
_, err = routers.Update(networkingClient, routerId, updateOpts).Extract() | ||
if err != nil { | ||
return fmt.Errorf("Error updating OpenStack Neutron Router: %s", err) | ||
} | ||
d.SetId(fmt.Sprintf("%s-route-%s-%s", routerId, destCidr, nextHop)) | ||
|
||
} else { | ||
log.Printf("[DEBUG] Router %s has route already", routerId) | ||
} | ||
|
||
return resourceNetworkingRouterRouteV2Read(d, meta) | ||
} | ||
|
||
func resourceNetworkingRouterRouteV2Read(d *schema.ResourceData, meta interface{}) error { | ||
|
||
routerId := d.Get("router_id").(string) | ||
|
||
config := meta.(*Config) | ||
networkingClient, err := config.networkingV2Client(d.Get("region").(string)) | ||
if err != nil { | ||
return fmt.Errorf("Error creating OpenStack networking client: %s", err) | ||
} | ||
|
||
n, err := routers.Get(networkingClient, routerId).Extract() | ||
if err != nil { | ||
httpError, ok := err.(*gophercloud.UnexpectedResponseCodeError) | ||
if !ok { | ||
return fmt.Errorf("Error retrieving OpenStack Neutron Router: %s", err) | ||
} | ||
|
||
if httpError.Actual == 404 { | ||
d.SetId("") | ||
return nil | ||
} | ||
return fmt.Errorf("Error retrieving OpenStack Neutron Router: %s", err) | ||
} | ||
|
||
log.Printf("[DEBUG] Retrieved Router %s: %+v", routerId, n) | ||
|
||
var destCidr string = d.Get("destination_cidr").(string) | ||
var nextHop string = d.Get("next_hop").(string) | ||
|
||
d.Set("next_hop", "") | ||
d.Set("destination_cidr", "") | ||
|
||
for _, r := range n.Routes { | ||
|
||
if r.DestinationCIDR == destCidr && r.NextHop == nextHop { | ||
d.Set("destination_cidr", destCidr) | ||
d.Set("next_hop", nextHop) | ||
break | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func resourceNetworkingRouterRouteV2Delete(d *schema.ResourceData, meta interface{}) error { | ||
|
||
routerId := d.Get("router_id").(string) | ||
osMutexKV.Lock(routerId) | ||
defer osMutexKV.Unlock(routerId) | ||
|
||
config := meta.(*Config) | ||
|
||
networkingClient, err := config.networkingV2Client(d.Get("region").(string)) | ||
if err != nil { | ||
return fmt.Errorf("Error creating OpenStack networking client: %s", err) | ||
} | ||
|
||
n, err := routers.Get(networkingClient, routerId).Extract() | ||
if err != nil { | ||
httpError, ok := err.(*gophercloud.UnexpectedResponseCodeError) | ||
if !ok { | ||
return fmt.Errorf("Error retrieving OpenStack Neutron Router: %s", err) | ||
} | ||
|
||
if httpError.Actual == 404 { | ||
return nil | ||
} | ||
return fmt.Errorf("Error retrieving OpenStack Neutron Router: %s", err) | ||
} | ||
|
||
var updateOpts routers.UpdateOpts | ||
|
||
var destCidr string = d.Get("destination_cidr").(string) | ||
var nextHop string = d.Get("next_hop").(string) | ||
|
||
var oldRts []routers.Route = n.Routes | ||
var newRts []routers.Route | ||
|
||
for _, r := range oldRts { | ||
|
||
if r.DestinationCIDR != destCidr || r.NextHop != nextHop { | ||
newRts = append(newRts, r) | ||
} | ||
} | ||
|
||
if len(oldRts) != len(newRts) { | ||
r := routers.Route{DestinationCIDR: destCidr, NextHop: nextHop} | ||
log.Printf( | ||
"[INFO] Deleting route %s", r) | ||
updateOpts.Routes = newRts | ||
|
||
log.Printf("[DEBUG] Updating Router %s with options: %+v", routerId, updateOpts) | ||
|
||
_, err = routers.Update(networkingClient, routerId, updateOpts).Extract() | ||
if err != nil { | ||
return fmt.Errorf("Error updating OpenStack Neutron Router: %s", err) | ||
} | ||
} else { | ||
return fmt.Errorf("Route did not exist already") | ||
} | ||
|
||
return nil | ||
} |
Oops, something went wrong.