provider/cloudstack: add security_group_names
This commit is contained in:
parent
dd59ceb495
commit
d7e7a45ec6
|
@ -89,6 +89,15 @@ func resourceCloudStackInstance() *schema.Resource {
|
||||||
ConflictsWith: []string{"affinity_group_ids"},
|
ConflictsWith: []string{"affinity_group_ids"},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"security_group_names": &schema.Schema{
|
||||||
|
Type: schema.TypeSet,
|
||||||
|
Optional: true,
|
||||||
|
Computed: true,
|
||||||
|
ForceNew: true,
|
||||||
|
Elem: &schema.Schema{Type: schema.TypeString},
|
||||||
|
Set: schema.HashString,
|
||||||
|
},
|
||||||
|
|
||||||
"project": &schema.Schema{
|
"project": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
|
@ -240,6 +249,17 @@ func resourceCloudStackInstanceCreate(d *schema.ResourceData, meta interface{})
|
||||||
p.SetAffinitygroupnames(groups)
|
p.SetAffinitygroupnames(groups)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If there is a security_group_names supplied, add it to the parameter struct
|
||||||
|
if sgns := d.Get("security_group_names").(*schema.Set); sgns.Len() > 0 {
|
||||||
|
var groups []string
|
||||||
|
|
||||||
|
for _, group := range sgns.List() {
|
||||||
|
groups = append(groups, group.(string))
|
||||||
|
}
|
||||||
|
|
||||||
|
p.SetSecuritygroupnames(groups)
|
||||||
|
}
|
||||||
|
|
||||||
// If there is a project supplied, we retrieve and set the project id
|
// If there is a project supplied, we retrieve and set the project id
|
||||||
if err := setProjectid(p, cs, d); err != nil {
|
if err := setProjectid(p, cs, d); err != nil {
|
||||||
return err
|
return err
|
||||||
|
@ -347,6 +367,15 @@ func resourceCloudStackInstanceRead(d *schema.ResourceData, meta interface{}) er
|
||||||
d.Set("affinity_group_names", agns)
|
d.Set("affinity_group_names", agns)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sgns := &schema.Set{F: schema.HashString}
|
||||||
|
for _, group := range vm.Securitygroup {
|
||||||
|
sgns.Add(group.Name)
|
||||||
|
}
|
||||||
|
|
||||||
|
if sgns.Len() > 0 {
|
||||||
|
d.Set("security_group_names", sgns)
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -73,6 +73,9 @@ The following arguments are supported:
|
||||||
* `affinity_group_names` - (Optional) List of affinity groups to apply to this
|
* `affinity_group_names` - (Optional) List of affinity groups to apply to this
|
||||||
instance. Changing this forces a new resource to be created.
|
instance. Changing this forces a new resource to be created.
|
||||||
|
|
||||||
|
* `security_group_names` - (Optional) List of security groups to apply to this
|
||||||
|
isnstance. Changing this forces a new resource to be created.
|
||||||
|
|
||||||
## Attributes Reference
|
## Attributes Reference
|
||||||
|
|
||||||
The following attributes are exported:
|
The following attributes are exported:
|
||||||
|
|
Loading…
Reference in New Issue