Merge pull request #3961 from aznashwan/b-aws-provider-build
provider/aws: remove build-blocking unused variable.
This commit is contained in:
commit
6a74f74ab8
|
@ -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)),
|
||||
|
|
Loading…
Reference in New Issue