Skip to content
This repository has been archived by the owner on Jul 26, 2021. It is now read-only.

Security group rules don’t have a name parameter #4

Merged
merged 1 commit into from
Jun 27, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cloudstack/resource_cloudstack_security_group_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ func resourceCloudStackSecurityGroupRuleRead(d *schema.ResourceData, meta interf
)
if err != nil {
if count == 0 {
log.Printf("[DEBUG] Security group %s does not longer exist", d.Get("name").(string))
log.Printf("[DEBUG] Security group %s does not longer exist", d.Id())
d.SetId("")
return nil
}
Expand Down