Skip to content

Commit

Permalink
Merge pull request remind101#1099 from iserko/more_procfile_docs
Browse files Browse the repository at this point in the history
Added supported container environment variables into docs
  • Loading branch information
ejholmes authored Aug 1, 2017
2 parents 302c7b3 + 20116b0 commit 1593470
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ build
*.dump
*.key
*.cert

# Emacs temporary files
\#*\#
.\#*
9 changes: 9 additions & 0 deletions procfile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,12 @@ This allows you to set process specific environment variables. If these are set
environment:
EMPIRE_X_LOAD_BALANCER_TYPE: "alb"
```

Supported environment variables that can either be set via `emp set` for the whole application or
inside the `Procfile` for a specific process.

Name | Default value | Available options | Description
-----|---------------|-------------------|------------
`EMPIRE_X_LOAD_BALANCER_TYPE` | `elb` | `alb`, `elb`| Determines whether you will use an ALB or ELB
`EMPIRE_X_TASK_DEFINITION_TYPE` | not set | `custom` | Determines whether we use the Custom::ECSTaskDefinition (better explanation needed)
`EMPIRE_X_TASK_ROLE_ARN` | not set | any IAM role ARN | Sets the IAM role for that app/process. **Your ECS cluster MUST have Task Role support enabled before this can work!**

0 comments on commit 1593470

Please sign in to comment.