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

Add region_alias support for multiple aliases in a single region #115

Closed
wants to merge 1 commit into from
Closed

Add region_alias support for multiple aliases in a single region #115

wants to merge 1 commit into from

Commits on Jun 21, 2016

  1. add region_alias support for single region

    Multiple region_aliases can now be in the same region, and with
    the prepend_region_alias_to_stack_names flag set to true, the region_alias
    will be part of the stack name for easier readability.
    
    ````
    prepend_region_alias_to_stack_names: true
    region_alias:
      - production: us-east-1
    stacks:
      production:
        vpc:
          template: vpc.json
    ````
    
    The config above would create a stack named "production-vpc"
    
    It would also resolve parameters from:
    
    parameters/vpc.json
    parameters/us-east-1/vpc.json
    parameters/production/vpc.json
    flyinbutrs committed Jun 21, 2016
    Configuration menu
    Copy the full SHA
    92d5b6c View commit details
    Browse the repository at this point in the history