AWS Elastic Beanstalk with YAML

YAML parameters for AWS Elastic Beanstalk

NameTypeDescription
action RequiredStringThe ID of the action.
type RequiredStringThe type of the action. Should be set to ELASTIC_BEANSTALK.
application_name RequiredStringThe name of the application.
environment RequiredStringThe Amazon environment.
integration RequiredStringThe ID of the integration.
region RequiredStringThe name of the Amazon region. The full list of regions is available here.
deployment_excludesString[]The paths and/or files that will be left out during the deployment.
deployment_includesString[]The exceptions from the ignore patterns set in deployment_excludes.
version_labelStringThe label of the deployed version.
local_pathStringThe 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 Sep 24, 2024