Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hmanzur/actions-aws-eb
Elastic beanstalk cli custom action
https://github.com/hmanzur/actions-aws-eb
aws elasticbeanstalk github-action gutg
Last synced: 11 days ago
JSON representation
Elastic beanstalk cli custom action
- Host: GitHub
- URL: https://github.com/hmanzur/actions-aws-eb
- Owner: hmanzur
- License: mit
- Created: 2020-03-22T16:52:36.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-18T10:56:41.000Z (11 months ago)
- Last Synced: 2024-10-07T09:07:07.564Z (about 1 month ago)
- Topics: aws, elasticbeanstalk, github-action, gutg
- Language: Dockerfile
- Homepage:
- Size: 24.4 KB
- Stars: 48
- Watchers: 2
- Forks: 48
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Aws eb cli action
![Run tests](https://github.com/hmanzur/actions-aws-eb/workflows/Run%20tests/badge.svg)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/hmanzur/actions-aws-eb/blob/master/LICENCE)
[![](https://img.shields.io/static/v1?label=Github%20Actions%20Hackathon%202020&message=Winner&logo=github&color=%23100637)](https://githubhackathon.com)This action run [eb cli](https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3.html)
## Inputs
### `command`
**Required** The command to run on cli.
## Example usage
```YAML
uses: hmanzur/[email protected]
with:
command: 'deploy ${{ secrets.ENVIRONMENT_NAME }}'
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: "us-east-1"
```