An open API service indexing awesome lists of open source software.

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

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 dev

or

$ go run deploy.go prd
```