Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
DrFaust92 committed Oct 9, 2021
1 parent 16e9b77 commit d9d1ef5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions aws/data_source_aws_glue_connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,8 @@ func dataSourceAwsGlueConnectionRead(ctx context.Context, d *schema.ResourceData
return diag.Errorf("error listing tags for Glue Connection (%s): %s", connectionArn, err)
}

tags = tags.IgnoreAws().IgnoreConfig(ignoreTagsConfig)

//lintignore:AWSR002
if err := d.Set("tags", tags.Map()); err != nil {
if err := d.Set("tags", tags.IgnoreAws().IgnoreConfig(ignoreTagsConfig).Map()); err != nil {
return diag.Errorf("error setting tags: %s", err)
}

Expand Down

0 comments on commit d9d1ef5

Please sign in to comment.