https://github.com/dongri/aws
AWS Elastic Beanstalk Deploy Tool
https://github.com/dongri/aws
Last synced: about 2 months ago
JSON representation
AWS Elastic Beanstalk Deploy Tool
- Host: GitHub
- URL: https://github.com/dongri/aws
- Owner: dongri
- License: mit
- Created: 2015-02-28T14:03:37.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-19T04:09:40.000Z (about 10 years ago)
- Last Synced: 2025-01-21T05:16:01.473Z (3 months ago)
- Language: Go
- Size: 160 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eb-deploy
AWS Elastic Beanstalk Deploy Tool# Requirement
EB CLI 3.x
[Getting Set Up with EB Command Line Interface (CLI) 3.x](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-getting-set-up.html)
# Install (Settings ENVs)
```
var envs = map[string]interface{}{
"dev": map[string]string{
"CNAME": "******.elasticbeanstalk.com",
"REGION": "ap-northeast-1",
},
"prd": map[string]string{
"CNAME": "******.elasticbeanstalk.com",
"REGION": "us-east-1",
},
}
```# Usage
```
$ go run deploy.go devor
$ go run deploy.go prd
```