-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
22 lines (22 loc) · 777 Bytes
/
action.yml
File metadata and controls
22 lines (22 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: init-credentials
description: "Set up AWS and Kubernetes credentials to be used by subsequent steps."
inputs:
aws_account_id:
description: "Which AWS account ID to deploy into (e.g. with Terraform, K8s)."
required: true
aws_access_key_id:
required: true
aws_secret_access_key:
required: true
kube_config:
required: true
cluster:
description: "Which cluster to configure the config."
required: true
aws_iam_role_name:
description: "Used to set up another local AWS profile for assuming another IAM role; required for cross-account k8s auth."
ecr_aws_account_ids:
description: "A list of comma-separated AWS account IDs with which to perform docker login commands for ECR."
runs:
using: "node16"
main: "build/index.js"