forked from Amraneze/get-ebs-env-variables
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
32 lines (31 loc) · 916 Bytes
/
action.yml
File metadata and controls
32 lines (31 loc) · 916 Bytes
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
name: "Get Elastic Beanstalk Environment's variables"
description: "Get the AWS Elastic Beanstalk environment's variables to use them from the output of this action."
author: "Amrane Ait Zeouay"
runs:
using: "node16"
main: "get-ebs-env-variables.js"
inputs:
aws_access_key:
description: "AWS Access Key."
required: true
aws_secret_key:
description: "AWS Secret Key."
required: true
region:
description: "AWS Environment's Region."
required: true
application_name:
description: "AWS Elastic Beanstalk application's name."
required: true
environment_name:
description: "AWS Elastic Beanstalk environment's name."
required: true
use_env_file:
description: "True if we should export a env file."
required: false
file_path:
description: "The name and path of the env file to export."
required: false
branding:
icon: "arrow-up"
color: "green"