AWS Elastic Beanstalk with YAML

YAML parameters for AWS Elastic Beanstalk

NameTypeDescription
action
Required
StringThe ID of the action.
type
Required
StringThe type of the action. Should be set to ELASTIC_BEANSTALK.
application_name
Required
StringThe name of the application.
environment
Required
StringThe Amazon environment.
integration_hash
Required
StringThe ID of the integration.
region
Required
StringThe 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

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

Get Started

Sign up for free and deploy your project in less than 10 minutes.