Merge pull request #1223 from hashicorp/b-fix-ingress-self-ommission

provider/aws: Fix issue with ignoring the 'self' attribute of a Security Group rule
This commit is contained in:
Clint 2015-03-18 16:42:17 -05:00
commit eadc44d5f7
1 changed files with 1 additions and 0 deletions

View File

@ -285,6 +285,7 @@ func resourceAwsSecurityGroupRuleHash(v interface{}) int {
buf.WriteString(fmt.Sprintf("%d-", m["from_port"].(int)))
buf.WriteString(fmt.Sprintf("%d-", m["to_port"].(int)))
buf.WriteString(fmt.Sprintf("%s-", m["protocol"].(string)))
buf.WriteString(fmt.Sprintf("%t-", m["self"].(bool)))
// We need to make sure to sort the strings below so that we always
// generate the same hash code no matter what is in the set.