AWS Elastic Beanstalk with YAML

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 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

yaml
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: "my_integration" deployment_excludes: - "/assets/" - "file.txt" deployment_includes: - "/assets/assets-new/" - "/assets/file.txt"

Last modified on Mar 4, 2025