Merge pull request #1753 from hashicorp/f-aws-db-subnet-name

provider/aws: Fix refresh/plan issue with DB Param. Group name
pull/1761/head
Clint 11 years ago
commit 76e897fedb

@ -106,7 +106,7 @@ func resourceAwsDbSubnetGroupRead(d *schema.ResourceData, meta interface{}) erro
return fmt.Errorf("Unable to find DB Subnet Group: %#v", describeResp.DBSubnetGroups)
}
d.Set("name", *subnetGroup.DBSubnetGroupName)
d.Set("name", d.Id())
d.Set("description", *subnetGroup.DBSubnetGroupDescription)
subnets := make([]string, 0, len(subnetGroup.Subnets))

Loading…
Cancel
Save