-
Notifications
You must be signed in to change notification settings - Fork 8
/
action.yml
28 lines (28 loc) · 836 Bytes
/
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
name: "AWS Credentials Via Okta"
description: "Get temporary AWS credentials (using STS) from your Okta profile."
inputs:
aws_role_arn:
description: "ARN of federated Okta role"
required: true
okta_username:
description: "Username of your Okta login (usually your email)"
required: true
okta_password:
description: "Password of your Okta login"
required: true
okta_app_url:
description: "Okta AWS App URL (usually the Okta tile URL)"
required: true
okta_mfa_seed:
description: "Seed for obtaining Okta MFA code"
required: true
okta_mfa_method:
description: "Okta MFA Method (https://developer.okta.com/docs/reference/api/factors/)"
required: false
default: "token:software:totp"
runs:
using: "docker"
image: "Dockerfile"
branding:
icon: 'unlock'
color: 'orange'