Skip to content

Commit

Permalink
fix: [CENTEX-736] enable HidePassword option for aws_glue_connection (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-snyk authored Jul 28, 2023
1 parent d3636a4 commit 66dedf5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions aws/resource_aws_glue_connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,9 @@ func resourceAwsGlueConnectionRead(d *schema.ResourceData, meta interface{}) err
}

input := &glue.GetConnectionInput{
CatalogId: aws.String(catalogID),
Name: aws.String(connectionName),
CatalogId: aws.String(catalogID),
Name: aws.String(connectionName),
HidePassword: aws.Bool(true), // CENTEX-736
}

log.Printf("[DEBUG] Reading Glue Connection: %s", input)
Expand Down

0 comments on commit 66dedf5

Please sign in to comment.