Add custom user agent

This commit is contained in:
Clare Liguori
2019-11-03 18:41:05 -08:00
parent a9cc37a0ee
commit e13421fee5
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -134,7 +134,9 @@ async function run() {
core.exportVariable('AWS_REGION', region);
// Get the AWS account ID
const sts = new aws.STS();
const sts = new aws.STS({
customUserAgent: 'configure-aws-credentials-for-github-actions'
});
const identity = await sts.getCallerIdentity().promise();
const accountId = identity.Account;
core.setOutput('aws-account-id', accountId);
+3 -1
View File
@@ -32,7 +32,9 @@ async function run() {
core.exportVariable('AWS_REGION', region);
// Get the AWS account ID
const sts = new aws.STS();
const sts = new aws.STS({
customUserAgent: 'configure-aws-credentials-for-github-actions'
});
const identity = await sts.getCallerIdentity().promise();
const accountId = identity.Account;
core.setOutput('aws-account-id', accountId);