Merge pull request #4050 from hashicorp/b-aws-sg-rule-recreate

providers/aws: Fix issue recreating security group rule if it has bee…
This commit is contained in:
Clint 2015-11-24 14:11:07 -06:00
commit a1f4b446e8
1 changed files with 3 additions and 2 deletions

View File

@ -174,9 +174,10 @@ func resourceAwsSecurityGroupRuleRead(d *schema.ResourceData, meta interface{})
p := expandIPPerm(d, sg)
if len(rules) == 0 {
return fmt.Errorf(
"[WARN] No %s rules were found for Security Group (%s) looking for Security Group Rule (%s)",
log.Printf("[WARN] No %s rules were found for Security Group (%s) looking for Security Group Rule (%s)",
ruleType, *sg.GroupName, d.Id())
d.SetId("")
return nil
}
for _, r := range rules {