provider/aws: Fix issue where we ignored the 'self' attribute of a security group rule

This commit is contained in:
Clint Shryock 2015-03-17 15:48:10 -05:00
parent dc4abb48fa
commit 7034619863
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.