跳到主要内容

AWS Elastic Beanstalk with YAML

List of YAML parameters and examples for the "AWS Elastic Beanstalk"

YAML parameters for AWS Elastic Beanstalk

名称类型描述
action
必填
StringThe ID of the action.
type
必填
StringThe type of the action. Should be set to ELASTIC_BEANSTALK.
application_name
必填
StringThe name of the application.
environment
必填
StringThe Amazon environment.
integration_hash
必填
StringThe ID of the integration.
region
必填
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"