forked from Amraneze/check-ebs-env-health
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (29 loc) · 799 Bytes
/
action.yml
File metadata and controls
31 lines (29 loc) · 799 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
name: "Check Elastic Beanstalk Environment's Health"
description: "Check the AWS Elastic Beanstalk environment's health."
author: 'Amrane Ait Zeouay'
runs:
using: 'node12'
pre: 'npm ci'
main: 'check-env.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
environment_name:
description: "Beanstalk environment's name."
required: true
wait_for_env:
description: 'The time in seconds to wait for the environment to be healthy. Default is 15 seconds.'
required: false
outputs:
ebs_env:
description: 'The current environment of the application.'
branding:
icon: 'arrow-up'
color: 'green'