fix: change sanitization character from '*' to '_'

This commit is contained in:
Laurence Armstrong
2020-02-12 08:53:52 +09:00
committed by Clare Liguori
parent e8a907912d
commit 55f6a14016
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ const util = require('util');
const MAX_ACTION_RUNTIME = 6 * 3600;
const USER_AGENT = 'configure-aws-credentials-for-github-actions';
const MAX_TAG_VALUE_LENGTH = 256;
const SANITIZATION_CHARACTER = '*'
const SANITIZATION_CHARACTER = '_'
async function assumeRole(params) {
// Assume a role to get short-lived credentials using longer-lived credentials.