mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-06-06 00:17:06 +00:00
Add custom user agent
This commit is contained in:
parent
a9cc37a0ee
commit
e13421fee5
2 changed files with 6 additions and 2 deletions
4
dist/index.js
vendored
4
dist/index.js
vendored
|
|
@ -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);
|
||||
|
|
|
|||
4
index.js
4
index.js
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue