remove unneeded print function

This commit is contained in:
Patrick Gray 2015-10-31 10:52:12 -04:00
parent 9ab5596458
commit 6a2d3eaa6b
1 changed files with 1 additions and 1 deletions

View File

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