-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathaction.yml
45 lines (45 loc) · 1.29 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: 'SAML.to Assume AWS Role'
description: 'GitHub Action Assume AWS Roles using SAML.to'
branding:
icon: 'arrow-up-circle'
color: 'blue'
inputs:
role:
description: The ARN of the role to assume
required: true
region:
description: The AWS Region
required: false
default: 'us-east-1'
provider:
description: The provider to use in saml-to.yml
required: false
configOwner:
description: Specify a different GitHub Org/User that hosts the saml-to.yml, defaults to this repository's owner.
required: false
configPath:
description: "Specify a path to the SAML.to config file (Default: 'saml-to.yml')"
required: false
profile:
description: 'Store the credentials to the provided named profile in `~/.aws` (instead of writing them to Environment Variables)'
required: false
outputs:
region:
description: The AWS region
accountId:
description: The AWS Account ID
userId:
description: The Ephemeral User ID
roleArn:
description: The ARN of the Role
assumedRoleArn:
description: The effective ARN of the Assumed Role
accessKeyId:
description: The AWS Access Key ID
secretAccessKey:
description: The AWS Secret Access Key
sessionToken:
description: The AWS Session Token
runs:
using: 'node16'
main: 'dist/main.js'