AWS Elastic Beanstalk with YAML
Learn more about:
YAML parameters for AWS Elastic Beanstalk
Name | Type | Description |
---|---|---|
action Required | String | The ID of the action. |
type Required | String | The type of the action. Should be set to ELASTIC_BEANSTALK . |
application_name Required | String | The name of the application. |
environment Required | String | The Amazon environment. |
integration_hash Required | String | The ID of the integration. |
region Required | String | The name of the Amazon region. The full list of regions is available here. |
deployment_excludes | String[] | The paths and/or files that will be left out during the deployment. |
deployment_includes | String[] | The exceptions from the ignore patterns set in deployment_excludes . |
version_label | String | The label of the deployed version. |
local_path | String | The path in the repository. |
YAML example for AWS Elastic Beanstalk
actions:
- action: "Upload files to Elastic Beanstalk/tests"
type: "ELASTIC_BEANSTALK"
local_path: "/"
application_name: "MyApp"
environment: "MyEnv"
version_label: "NewVersion"
region: "us-west-2"
integration_hash: "5ddb7c180fb38be67bd78a88a"
deployment_excludes:
- "/assets/"
- "file.txt"
deployment_includes:
- "/assets/assets-new/"
- "/assets/file.txt"
Last modified on April 26, 2022