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

[feature-request] Support Wildcards/Multiple Elastic Beanstalk Environment Uploads #79

Open
pinsondg opened this issue Jan 24, 2022 · 1 comment

Comments

@pinsondg
Copy link

It would be nice to be able to specify multiple application environments deploy to. This could either be done with a wildcard or a list of environment names, or both.

Examples:

Existing Application Environments:
[Some-Environment-1, Some-Environment-2, Some-Environment-3, Another-Environment-1]

      uses: einaregilsson/beanstalk-deploy@v20
      with:
        aws_access_key: ${{ secrets.AWS_ACCESS_KEY_ID }}
        aws_secret_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
        application_name: MyApplicationName
        environment_names: Some-Environment-*
        version_label: 12345
        region: us-west-2
        deployment_package: deploy.zip

Will deploy to Some-Environment-1, Some-Environment-2, Some-Environment-3

      uses: einaregilsson/beanstalk-deploy@v20
      with:
        aws_access_key: ${{ secrets.AWS_ACCESS_KEY_ID }}
        aws_secret_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
        application_name: MyApplicationName
        environment_names: 
            - Some-Environment-1
            - Some-Environment-3
            - Another-Environment-1
        version_label: 12345
        region: us-west-2
        deployment_package: deploy.zip

Will deploy to Some-Environment-1, Some-Environment-3, Another-Environment-1

@DanielChrome
Copy link

I'm looking for a way to multiple environment deploy. Any suggest?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants