Skip to content

Commit

Permalink
Appease the compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
dotboris committed Nov 9, 2022
1 parent ef13e96 commit bcffdb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -545,8 +545,8 @@ func (config *TGFConfig) readSSMParameterStore(ssmParameterFolder string) map[st
svc := ssm.NewFromConfig(awsConfig)
response, err := svc.GetParametersByPath(context.TODO(), &ssm.GetParametersByPathInput{
Path: aws.String(ssmParameterFolder),
Recursive: true,
WithDecryption: true,
Recursive: aws.Bool(true),
WithDecryption: aws.Bool(true),
})
if err != nil {
log.Warningf("Caught an error while reading from `%s` in SSM: %v", ssmParameterFolder, err)
Expand Down

0 comments on commit bcffdb3

Please sign in to comment.