terraform/vendor/github.com/terraform-providers/terraform-provider-openstack/openstack/data_source_openstack_netwo...

106 lines
2.4 KiB
Go

package openstack
import (
"fmt"
"log"
"strings"
"github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/security/groups"
"github.com/hashicorp/terraform/helper/schema"
)
func dataSourceNetworkingSecGroupV2() *schema.Resource {
return &schema.Resource{
Read: dataSourceNetworkingSecGroupV2Read,
Schema: map[string]*schema.Schema{
"region": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
},
"secgroup_id": {
Type: schema.TypeString,
Optional: true,
},
"name": {
Type: schema.TypeString,
Optional: true,
},
"description": {
Type: schema.TypeString,
Optional: true,
},
"tenant_id": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Computed: true,
},
"tags": {
Type: schema.TypeSet,
Optional: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
"all_tags": {
Type: schema.TypeSet,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
},
}
}
func dataSourceNetworkingSecGroupV2Read(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
networkingClient, err := config.networkingV2Client(GetRegion(d, config))
if err != nil {
return fmt.Errorf("Error creating OpenStack networking client: %s", err)
}
listOpts := groups.ListOpts{
ID: d.Get("secgroup_id").(string),
Name: d.Get("name").(string),
Description: d.Get("description").(string),
TenantID: d.Get("tenant_id").(string),
}
tags := networkV2AttributesTags(d)
if len(tags) > 0 {
listOpts.Tags = strings.Join(tags, ",")
}
pages, err := groups.List(networkingClient, listOpts).AllPages()
if err != nil {
return err
}
allSecGroups, err := groups.ExtractGroups(pages)
if err != nil {
return fmt.Errorf("Unable to retrieve security groups: %s", err)
}
if len(allSecGroups) < 1 {
return fmt.Errorf("No Security Group found with name: %s", d.Get("name"))
}
if len(allSecGroups) > 1 {
return fmt.Errorf("More than one Security Group found with name: %s", d.Get("name"))
}
secGroup := allSecGroups[0]
log.Printf("[DEBUG] Retrieved Security Group %s: %+v", secGroup.ID, secGroup)
d.SetId(secGroup.ID)
d.Set("name", secGroup.Name)
d.Set("description", secGroup.Description)
d.Set("tenant_id", secGroup.TenantID)
d.Set("all_tags", secGroup.Tags)
d.Set("region", GetRegion(d, config))
return nil
}