Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small fixes #92

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,18 +153,31 @@ Here's a complete example of all supported config keys explained for the `contro
```yaml
# Keys beginning with "cpln_" correspond to your settings in Control Plane.

# Global settings that apply to cpl usage
# You can opt out of allowing the use of an ENV CPLN_ORG and CPLN_APP for the cpl CLI to avoid
# any accidents with the wrong org or app.
allow_org_override_by_env: true
allow_app_override_by_env: true

aliases:
common: &common
# Organization name for staging (customize to your needs).

# Org for staging and QA apps is typically set as an alias
# Production apps will use a different organization, specified below, for security.
# Change this value to your org name
# or set ENV value to CPLN_ORG as that will override whatever is used here for all cpl commands
# provided that allow_org_override_by_env is set to true.
cpln_org: my-org-staging

# Example apps use only one location. Control Plane offers the ability to use multiple locations.
# Control Plane offers the ability to use multiple locations.
# default_location is used for commands that require a location:
# including `ps`, `run`, `run:detached`, `apply-template`
# This can be overridden with option --location=<location>
default_location: aws-us-east-2

# Allows running the command `cpl setup-app`
# instead of `cpl apply-template gvc redis postgres memcached rails sidekiq`.
setup:
setup_app_templates_workloads:
rafaelgomesxyz marked this conversation as resolved.
Show resolved Hide resolved
- gvc
- redis
- postgres
Expand Down