Skip to main content

ECS Deploy Runner

Use a CI/CD pipeline for deploying infrastructure code updates.

View on GitHub

Reference

  • ami_builder_config Configuration options for the ami-builder container of the ECS deploy runner stack. This container will be used for building AMIs in the CI/CD pipeline using packer. Set to null to disable this container.
  • container_default_launch_type The default launch type of the ECS deploy runner workers. This launch type will be used if it is not overridden during invocation of the lambda function. Must be FARGATE or EC2.
  • container_max_cpu The maximum CPU units that is allowed to be specified by the user when invoking the deploy runner with the Lambda function.
  • container_max_memory The maximum memory units that is allowed to be specified by the user when invoking the deploy runner with the Lambda function.
  • docker_image_builder_config Configuration options for the docker-image-builder container of the ECS deploy runner stack. This container will be used for building docker images in the CI/CD pipeline. Set to null to disable this container.
  • docker_image_builder_hardcoded_options Which options and args to always pass in alongside the ones provided by the command. This is a map of option keys to args to pass in. Each arg in the list will be passed in as a separate option. This will be passed in first, before the args provided by the user in the event data.
  • ec2_worker_pool_configuration Worker configuration of a EC2 worker pool for the ECS cluster. An EC2 worker pool supports caching of Docker images, so your builds may run faster, whereas Fargate is serverless, so you have no persistent EC2 instances to manage and pay for. If null, no EC2 worker pool will be allocated and the deploy runner will be in Fargate only mode. Note that when this variable is set, this example module will automatically lookup and use the base ECS optimized AMI that AWS provides.
  • iam_groups List of AWS IAM groups that should be given access to invoke the deploy runner.
  • iam_roles List of AWS IAM roles that should be given access to invoke the deploy runner.
  • iam_users List of AWS IAM usernames that should be given access to invoke the deploy runner.
  • kms_grant_opt_in_regions Create multi-region resources in the specified regions. The best practice is to enable multi-region services in all enabled regions in your AWS account. This variable must NOT be set to null or empty. Otherwise, we won't know which regions to use and authenticate to, and may use some not enabled in your AWS account (e.g., GovCloud, China, etc). To get the list of regions enabled in your AWS account, you can use the AWS CLI: aws ec2 describe-regions.
  • name Name of this instance of the deploy runner stack. Used to namespace all resources.
  • private_subnet_ids List of IDs of private subnets that can be used for running the ECS task and Lambda function.
  • snapshot_encryption_kms_cmk_arns Map of names to ARNs of KMS CMKs that are used to encrypt snapshots (including AMIs). This module will create the necessary KMS key grants to allow the respective deploy containers access to utilize the keys for managing the encrypted snapshots. The keys are arbitrary names that are used to identify the key.
  • terraform_applier_config Configuration options for the terraform-applier container of the ECS deploy runner stack. This container will be used for running infrastructure deployment actions (including automated variable updates) in the CI/CD pipeline with Terraform / Terragrunt. Set to null to disable this container.
  • terraform_planner_config Configuration options for the terraform-planner container of the ECS deploy runner stack. This container will be used for running infrastructure plan (including validate) actions in the CI/CD pipeline with Terraform / Terragrunt. Set to null to disable this container.
  • vpc_id ID of the VPC where the ECS task and Lambda function should run.