Skip to content

Commit

Permalink
Make generated blob credentials readable by all
Browse files Browse the repository at this point in the history
  • Loading branch information
michael stack committed Feb 13, 2025
1 parent 549d403 commit aad63a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func writeCredentialsFile(region, credFile string, accessKey, secretKey, token s
return fmt.Errorf("failed to marshal credentials: %v", err)
}

if err := os.WriteFile(credFile, data, 0600); err != nil {
if err := os.WriteFile(credFile, data, 0644); err != nil {
return fmt.Errorf("failed to write credentials file: %v", err)
}

Expand Down

0 comments on commit aad63a1

Please sign in to comment.