Merge pull request #3961 from aznashwan/b-aws-provider-build

provider/aws: remove build-blocking unused variable.
This commit is contained in:
James Nugent 2015-11-18 16:32:48 +02:00
commit 6a74f74ab8
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ func resourceAwsIamGroupUpdate(d *schema.ResourceData, meta interface{}) error {
if d.HasChange("name") || d.HasChange("path") {
iamconn := meta.(*AWSClient).iamconn
on, nn := d.GetChange("name")
op, np := d.GetChange("path")
_, np := d.GetChange("path")
request := &iam.UpdateGroupInput{
GroupName: aws.String(on.(string)),