Awesome
<!-- markdownlint-disable --><a href="https://cpco.io/homepage"><img src=".github/banner.png?raw=true" alt="Project Banner"/></a><br/> <p align="right"> <a href="https://github.com/cloudposse-terraform-components/aws-github-runners/releases/latest"><img src="https://img.shields.io/github/release/cloudposse-terraform-components/aws-github-runners.svg?style=for-the-badge" alt="Latest Release"/></a><a href="https://slack.cloudposse.com"><img src="https://slack.cloudposse.com/for-the-badge.svg" alt="Slack Community"/></a></p>
<!-- markdownlint-restore --> <!-- ** DO NOT EDIT THIS FILE ** ** This file was automatically generated by the `cloudposse/build-harness`. ** 1) Make all changes to `README.yaml` ** 2) Run `make init` (you only need to do this once) ** 3) Run`make readme` to rebuild this file. ** ** (We maintain HUNDREDS of open source projects. This is how we maintain our sanity.) ** -->This component is responsible for provisioning EC2 instances for GitHub runners.
[!TIP]
We also have a similar component based on actions-runner-controller for Kubernetes.
Requirements
Usage
Stack Level: Regional
Here's an example snippet for how to use this component.
components:
terraform:
github-runners:
vars:
cpu_utilization_high_threshold_percent: 5
cpu_utilization_low_threshold_percent: 1
default_cooldown: 300
github_scope: company
instance_type: "t3.small"
max_size: 10
min_size: 1
runner_group: default
scale_down_cooldown_seconds: 2700
wait_for_capacity_timeout: 10m
mixed_instances_policy:
instances_distribution:
on_demand_allocation_strategy: "prioritized"
on_demand_base_capacity: 1
on_demand_percentage_above_base_capacity: 0
spot_allocation_strategy: "capacity-optimized"
spot_instance_pools: null
spot_max_price: null
override:
- instance_type: "t4g.large"
weighted_capacity: null
- instance_type: "m5.large"
weighted_capacity: null
- instance_type: "m5a.large"
weighted_capacity: null
- instance_type: "m5n.large"
weighted_capacity: null
- instance_type: "m5zn.large"
weighted_capacity: null
- instance_type: "m4.large"
weighted_capacity: null
- instance_type: "c5.large"
weighted_capacity: null
- instance_type: "c5a.large"
weighted_capacity: null
- instance_type: "c5n.large"
weighted_capacity: null
- instance_type: "c4.large"
weighted_capacity: null
Configuration
API Token
Prior to deployment, the API Token must exist in SSM.
To generate the token, please follow these instructions. Once generated, write the API token to the SSM key store at the following location within the same AWS account and region where the GitHub Actions runner pool will reside.
assume-role <automation-admin role>
chamber write github/runners/<github-org> registration-token ghp_secretstring
Background
Registration
Github Actions Self-Hosted runners can be scoped to the Github Organization, a Single Repository, or a group of
Repositories (Github Enterprise-Only). Upon startup, each runner uses a REGISTRATION_TOKEN
to call the Github API to
register itself with the Organization, Repository, or Runner Group (Github Enterprise).
Running Workflows
Once a Self-Hosted runner is registered, you will have to update your workflow with the runs-on
attribute specify it
should run on a self-hosted runner:
name: Test Self Hosted Runners
on:
push:
branches: [main]
jobs:
build:
runs-on: [self-hosted]
Workflow Github Permissions (GITHUB_TOKEN)
Each run of the Github Actions Workflow is assigned a GITHUB_TOKEN, which allows your workflow to perform actions
against Github itself such as cloning a repo, updating the checks API status, etc., and expires at the end of the
workflow run. The GITHUB_TOKEN has two permission "modes" it can operate in Read and write permissions
("Permissive"
or "Full Access") and Read repository contents permission
("Restricted" or "Read-Only"). By default, the GITHUB_TOKEN
is granted Full Access permissions, but you can change this via the Organization or Repo settings. If you opt for the
Read-Only permissions, you can optionally grant or revoke access to specific APIs via the workflow yaml
file and a
full list of APIs that can be accessed can be found in the
documentation
and is shown below in the table. It should be noted that the downside to this permissions model is that any user with
write access to the repository can escalate permissions for the workflow by updating the yaml
file, however, the APIs
available via this token are limited. Most notably the GITHUB_TOKEN does not have access to the users
, repos
,
apps
, billing
, or collaborators
APIs, so the tokens do not have access to modify sensitive settings or add/remove
users from the Organization/Repository.
<img src="/assets/refarch/cleanshot-2022-03-01-at-17.14.02-20220301-234351.png" height="664" width="720" /><br/>
Example of using escalated permissions for the entire workflow
name: Pull request labeler
on: [ pull_request_target ]
permissions:
contents: read
pull-requests: write
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
Example of using escalated permissions for a job
name: Create issue on commit
on: [ push ]
jobs:
create_commit:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Create issue using REST API
run: |
curl --request POST \
--url https://api.github.com/repos/${{ github.repository }}/issues \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
--header 'content-type: application/json' \
--data '{
"title": "Automated issue for commit: ${{ github.sha }}",
"body": "This issue was automatically created by the GitHub Action workflow **${{ github.workflow }}**. \n\n The commit hash was: _${{ github.sha }}_."
}' \
--fail
Pre-Requisites for Using This Component
In order to use this component, you will have to obtain the REGISTRATION_TOKEN
mentioned above from your Github
Organization or Repository and store it in SSM Parameter store. In addition, it is recommended that you set the
permissions “mode” for Self-hosted runners to Read-Only. The instructions for doing both are below.
Workflow Permissions
-
Browse to https://github.com/organizations/{Org}/settings/actions (Organization) or https://github.com/{Org}/{Repo}/settings/actions (Repository)
-
Set the default permissions for the GITHUB_TOKEN to Read Only
<img src="/assets/refarch/cleanshot-2022-03-01-at-16.10.02-20220302-005602.png" height="199" width="786" /><br/>
Creating Registration Token
[!TIP]
We highly recommend using a GitHub Application with the github-action-token-rotator module to generate the Registration Token. This will ensure that the token is rotated and that the token is stored in SSM Parameter Store encrypted with KMS.
GitHub Application
Follow the quickstart with the upstream module, cloudposse/terraform-aws-github-action-token-rotator, or follow the steps below.
- Create a new GitHub App
- Add the following permission:
# Required Permissions for Repository Runners:
## Repository Permissions
+ Actions (read)
+ Administration (read / write)
+ Metadata (read)
# Required Permissions for Organization Runners:
## Repository Permissions
+ Actions (read)
+ Metadata (read)
## Organization Permissions
+ Self-hosted runners (read / write)
- Generate a Private Key
If you are working with Cloud Posse, upload this Private Key, GitHub App ID, and Github App Installation ID to 1Password
and skip the rest. Otherwise, complete the private key setup in core-<default-region>-auto
.
- Convert the private key to a PEM file using the following command:
openssl pkcs8 -topk8 -inform PEM -outform PEM -nocrypt -in {DOWNLOADED_FILE_NAME}.pem -out private-key-pkcs8.key
- Upload PEM file key to the specified ssm path:
/github/runners/acme/private-key
incore-<default-region>-auto
- Create another sensitive SSM parameter
/github/runners/acme/registration-token
incore-<default-region>-auto
with any basic value, such as "foo". This will be overwritten by the rotator. - Update the GitHub App ID and Installation ID in the
github-action-token-rotator
catalog.
[!TIP]
If you change the Private Key saved in SSM, redeploy
github-action-token-rotator
(ClickOps) Obtain the Runner Registration Token
-
Browse to https://github.com/organizations/{Org}/settings/actions/runners (Organization) or https://github.com/{Org}/{Repo}/settings/actions/runners (Repository)
-
Click the New Runner button (Organization) or New Self Hosted Runner button (Repository)
-
Copy the Github Runner token from the next screen. Note that this is the only time you will see this token. Note that if you exit the
New {Self Hosted} Runner
screen and then later return by clicking theNew {Self Hosted} Runner
button again, the registration token will be invalidated and a new token will be generated.
<img src="/assets/refarch/cleanshot-2022-03-01-at-16.12.26-20220302-005927.png" height="1010" width="833" /><br/>
- Add the
REGISTRATION_TOKEN
to the/github/token
SSM parameter in the account where Github runners are hosted (usuallyautomation
), encrypted with KMS.
chamber write github token <value>
FAQ
The GitHub Registration Token is not updated in SSM
The github-action-token-rotator
runs an AWS Lambda function every 30 minutes. This lambda will attempt to use a
private key in its environment configuration to generate a GitHub Registration Token, and then store that token to AWS
SSM Parameter Store.
If the GitHub Registration Token parameter, /github/runners/acme/registration-token
, is not updated, read through the
following tips:
- The private key is stored at the given parameter path:
parameter_store_private_key_path: /github/runners/acme/private-key
- The private key is Base 64 encoded. If you pull the key from SSM and decode it, it should begin with
-----BEGIN PRIVATE KEY-----
- If the private key has changed, you must redeploy
github-action-token-rotator
. Run a plan against the component to make sure there are not changes required.
The GitHub Registration Token is valid, but the Runners are not registering with GitHub
If you first deployed the github-action-token-rotator
component initially with an invalid configuration and then
deployed the github-runners
component, the instance runners will have failed to register with GitHub.
After you correct github-action-token-rotator
and have a valid GitHub Registration Token in SSM, destroy and
recreate the github-runners
component.
If you cannot see the runners registered in GitHub, check the system logs on one of EC2 Instances in AWS in
core-<default-region>-auto
.
I cannot assume the role from GitHub Actions after deploying
The following error is very common if the GitHub workflow is missing proper permission.
Error: User: arn:aws:sts::***:assumed-role/acme-core-use1-auto-actions-runner@actions-runner-system/token-file-web-identity is not authorized to perform: sts:TagSession on resource: arn:aws:iam::999999999999:role/acme-plat-use1-dev-gha
In order to use a web identity, GitHub Action pipelines must have the following permission. See GitHub Action documentation for more.
permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
<!-- prettier-ignore-start -->
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
Requirements
Name | Version |
---|---|
<a name="requirement_terraform"></a> terraform | >= 1.0.0 |
<a name="requirement_aws"></a> aws | >= 4.9.0 |
<a name="requirement_cloudinit"></a> cloudinit | >= 2.2 |
Providers
Name | Version |
---|---|
<a name="provider_aws"></a> aws | >= 4.9.0 |
<a name="provider_cloudinit"></a> cloudinit | >= 2.2 |
Modules
Name | Source | Version |
---|---|---|
<a name="module_account_map"></a> account_map | cloudposse/stack-config/yaml//modules/remote-state | 1.5.0 |
<a name="module_autoscale_group"></a> autoscale_group | cloudposse/ec2-autoscale-group/aws | 0.35.1 |
<a name="module_graceful_scale_in"></a> graceful_scale_in | ./modules/graceful_scale_in | n/a |
<a name="module_iam_roles"></a> iam_roles | ../account-map/modules/iam-roles | n/a |
<a name="module_sg"></a> sg | cloudposse/security-group/aws | 1.0.1 |
<a name="module_this"></a> this | cloudposse/label/null | 0.25.0 |
<a name="module_vpc"></a> vpc | cloudposse/stack-config/yaml//modules/remote-state | 1.5.0 |
Resources
Name | Type |
---|---|
aws_iam_instance_profile.github_action_runner | resource |
aws_iam_policy.github_action_runner | resource |
aws_iam_role.github_action_runner | resource |
aws_ami.runner | data source |
aws_iam_policy_document.github_action_runner | data source |
aws_iam_policy_document.instance_assume_role_policy | data source |
aws_partition.current | data source |
aws_ssm_parameter.github_token | data source |
cloudinit_config.config | data source |
Inputs
Name | Description | Type | Default | Required |
---|---|---|---|---|
<a name="input_account_map_environment_name"></a> account_map_environment_name | The name of the environment where account_map is provisioned | string | "gbl" | no |
<a name="input_account_map_stage_name"></a> account_map_stage_name | The name of the stage where account_map is provisioned | string | "root" | no |
<a name="input_account_map_tenant_name"></a> account_map_tenant_name | The name of the tenant where account_map is provisioned.<br><br>If the tenant label is not used, leave this as null . | string | null | no |
<a name="input_additional_tag_map"></a> additional_tag_map | Additional key-value pairs to add to each map in tags_as_list_of_maps . Not added to tags or id .<br>This is for some rare cases where resources want additional configuration of tags<br>and therefore take a list of maps with tag key, value, and additional configuration. | map(string) | {} | no |
<a name="input_ami_filter"></a> ami_filter | Map of lists used to look up the AMI which will be used for the GitHub Actions Runner. | map(list(string)) | <pre>{<br> "name": [<br> "amzn2-ami-hvm-2.*-x86_64-ebs"<br> ]<br>}</pre> | no |
<a name="input_ami_owners"></a> ami_owners | The list of owners used to select the AMI of action runner instances. | list(string) | <pre>[<br> "amazon"<br>]</pre> | no |
<a name="input_attributes"></a> attributes | ID element. Additional attributes (e.g. workers or cluster ) to add to id ,<br>in the order they appear in the list. New attributes are appended to the<br>end of the list. The elements of the list are joined by the delimiter <br>and treated as a single ID element. | list(string) | [] | no |
<a name="input_block_device_mappings"></a> block_device_mappings | Specify volumes to attach to the instance besides the volumes specified by the AMI | <pre>list(object({<br> device_name = string<br> no_device = bool<br> virtual_name = string<br> ebs = object({<br> delete_on_termination = bool<br> encrypted = bool<br> iops = number<br> kms_key_id = string<br> snapshot_id = string<br> volume_size = number<br> volume_type = string<br> })<br> }))</pre> | [] | no |
<a name="input_context"></a> context | Single object for setting entire context at once.<br>See description of individual variables for details.<br>Leave string and numeric variables as null to use default value.<br>Individual variable settings (non-null) override settings in context object,<br>except for attributes, tags, and additional_tag_map, which are merged. | any | <pre>{<br> "additional_tag_map": {},<br> "attributes": [],<br> "delimiter": null,<br> "descriptor_formats": {},<br> "enabled": true,<br> "environment": null,<br> "id_length_limit": null,<br> "label_key_case": null,<br> "label_order": [],<br> "label_value_case": null,<br> "labels_as_tags": [<br> "unset"<br> ],<br> "name": null,<br> "namespace": null,<br> "regex_replace_chars": null,<br> "stage": null,<br> "tags": {},<br> "tenant": null<br>}</pre> | no |
<a name="input_cpu_utilization_high_evaluation_periods"></a> cpu_utilization_high_evaluation_periods | The number of periods over which data is compared to the specified threshold | number | 2 | no |
<a name="input_cpu_utilization_high_period_seconds"></a> cpu_utilization_high_period_seconds | The period in seconds over which the specified statistic is applied | number | 300 | no |
<a name="input_cpu_utilization_high_threshold_percent"></a> cpu_utilization_high_threshold_percent | The value against which the specified statistic is compared | number | 90 | no |
<a name="input_cpu_utilization_low_evaluation_periods"></a> cpu_utilization_low_evaluation_periods | The number of periods over which data is compared to the specified threshold | number | 2 | no |
<a name="input_cpu_utilization_low_period_seconds"></a> cpu_utilization_low_period_seconds | The period in seconds over which the specified statistic is applied | number | 300 | no |
<a name="input_cpu_utilization_low_threshold_percent"></a> cpu_utilization_low_threshold_percent | The value against which the specified statistic is compared | number | 10 | no |
<a name="input_default_cooldown"></a> default_cooldown | The amount of time, in seconds, after a scaling activity completes before another scaling activity can start | number | 300 | no |
<a name="input_delimiter"></a> delimiter | Delimiter to be used between ID elements.<br>Defaults to - (hyphen). Set to "" to use no delimiter at all. | string | null | no |
<a name="input_descriptor_formats"></a> descriptor_formats | Describe additional descriptors to be output in the descriptors output map.<br>Map of maps. Keys are names of descriptors. Values are maps of the form<br>{<br> format = string<br> labels = list(string)<br>} <br>(Type is any so the map values can later be enhanced to provide additional options.)<br>format is a Terraform format string to be passed to the format() function.<br>labels is a list of labels, in order, to pass to format() function.<br>Label values will be normalized before being passed to format() so they will be<br>identical to how they appear in id .<br>Default is {} (descriptors output will be empty). | any | {} | no |
<a name="input_docker_compose_version"></a> docker_compose_version | The version of docker-compose to install | string | "1.29.2" | no |
<a name="input_enabled"></a> enabled | Set to false to prevent the module from creating any resources | bool | null | no |
<a name="input_environment"></a> environment | ID element. Usually used for region e.g. 'uw2', 'us-west-2', OR role 'prod', 'staging', 'dev', 'UAT' | string | null | no |
<a name="input_github_scope"></a> github_scope | Scope of the runner (e.g. cloudposse/example for repo or cloudposse for org) | string | n/a | yes |
<a name="input_id_length_limit"></a> id_length_limit | Limit id to this many characters (minimum 6).<br>Set to 0 for unlimited length.<br>Set to null for keep the existing setting, which defaults to 0 .<br>Does not affect id_full . | number | null | no |
<a name="input_instance_type"></a> instance_type | Default instance type for the action runner. | string | "m5.large" | no |
<a name="input_label_key_case"></a> label_key_case | Controls the letter case of the tags keys (label names) for tags generated by this module.<br>Does not affect keys of tags passed in via the tags input.<br>Possible values: lower , title , upper .<br>Default value: title . | string | null | no |
<a name="input_label_order"></a> label_order | The order in which the labels (ID elements) appear in the id .<br>Defaults to ["namespace", "environment", "stage", "name", "attributes"].<br>You can omit any of the 6 labels ("tenant" is the 6th), but at least one must be present. | list(string) | null | no |
<a name="input_label_value_case"></a> label_value_case | Controls the letter case of ID elements (labels) as included in id ,<br>set as tag values, and output by this module individually.<br>Does not affect values of tags passed in via the tags input.<br>Possible values: lower , title , upper and none (no transformation).<br>Set this to title and set delimiter to "" to yield Pascal Case IDs.<br>Default value: lower . | string | null | no |
<a name="input_labels_as_tags"></a> labels_as_tags | Set of labels (ID elements) to include as tags in the tags output.<br>Default is to include all labels.<br>Tags with empty values will not be included in the tags output.<br>Set to [] to suppress all generated tags.<br>Notes:<br> The value of the name tag, if included, will be the id , not the name .<br> Unlike other null-label inputs, the initial setting of labels_as_tags cannot be<br> changed in later chained modules. Attempts to change it will be silently ignored. | set(string) | <pre>[<br> "default"<br>]</pre> | no |
<a name="input_max_instance_lifetime"></a> max_instance_lifetime | The maximum amount of time, in seconds, that an instance can be in service, values must be either equal to 0 or between 604800 and 31536000 seconds | number | null | no |
<a name="input_max_size"></a> max_size | The maximum size of the autoscale group | number | n/a | yes |
<a name="input_min_size"></a> min_size | The minimum size of the autoscale group | number | n/a | yes |
<a name="input_mixed_instances_policy"></a> mixed_instances_policy | Policy to use a mixed group of on-demand/spot of differing types. Launch template is automatically generated. https://www.terraform.io/docs/providers/aws/r/autoscaling_group.html#mixed_instances_policy-1 | <pre>object({<br> instances_distribution = object({<br> on_demand_allocation_strategy = string<br> on_demand_base_capacity = number<br> on_demand_percentage_above_base_capacity = number<br> spot_allocation_strategy = string<br> spot_instance_pools = number<br> spot_max_price = string<br> })<br> override = list(object({<br> instance_type = string<br> weighted_capacity = number<br> }))<br> })</pre> | null | no |
<a name="input_name"></a> name | ID element. Usually the component or solution name, e.g. 'app' or 'jenkins'.<br>This is the only ID element not also included as a tag .<br>The "name" tag is set to the full id string. There is no tag with the value of the name input. | string | null | no |
<a name="input_namespace"></a> namespace | ID element. Usually an abbreviation of your organization name, e.g. 'eg' or 'cp', to help ensure generated IDs are globally unique | string | null | no |
<a name="input_regex_replace_chars"></a> regex_replace_chars | Terraform regular expression (regex) string.<br>Characters matching the regex will be removed from the ID elements.<br>If not set, "/[^a-zA-Z0-9-]/" is used to remove all characters other than hyphens, letters and digits. | string | null | no |
<a name="input_region"></a> region | AWS Region | string | n/a | yes |
<a name="input_runner_group"></a> runner_group | GitHub runner group | string | "default" | no |
<a name="input_runner_labels"></a> runner_labels | List of labels to add to the GitHub Runner (e.g. 'Amazon Linux 2'). | list(string) | [] | no |
<a name="input_runner_role_additional_policy_arns"></a> runner_role_additional_policy_arns | List of policy ARNs that will be attached to the runners' default role on creation in addition to the defaults | list(string) | [] | no |
<a name="input_runner_version"></a> runner_version | GitHub runner release version | string | "2.288.1" | no |
<a name="input_scale_down_cooldown_seconds"></a> scale_down_cooldown_seconds | The amount of time, in seconds, after a scaling activity completes and before the next scaling activity can start | number | 300 | no |
<a name="input_ssm_parameter_name_format"></a> ssm_parameter_name_format | SSM parameter name format | string | "/%s/%s" | no |
<a name="input_ssm_path"></a> ssm_path | GitHub token SSM path | string | "github" | no |
<a name="input_ssm_path_key"></a> ssm_path_key | GitHub token SSM path key | string | "registration-token" | no |
<a name="input_stage"></a> stage | ID element. Usually used to indicate role, e.g. 'prod', 'staging', 'source', 'build', 'test', 'deploy', 'release' | string | null | no |
<a name="input_tags"></a> tags | Additional tags (e.g. {'BusinessUnit': 'XYZ'} ).<br>Neither the tag keys nor the tag values will be modified by this module. | map(string) | {} | no |
<a name="input_tenant"></a> tenant | ID element _(Rarely used, not included by default)_. A customer identifier, indicating who this instance of a resource is for | string | null | no |
<a name="input_userdata_post_install"></a> userdata_post_install | Shell script to run post installation of github action runner | string | "" | no |
<a name="input_userdata_pre_install"></a> userdata_pre_install | Shell script to run before installation of github action runner | string | "" | no |
<a name="input_wait_for_capacity_timeout"></a> wait_for_capacity_timeout | A maximum duration that Terraform should wait for ASG instances to be healthy before timing out. (See also Waiting for Capacity below.) Setting this to '0' causes Terraform to skip all Capacity Waiting behavior | string | "10m" | no |
Outputs
Name | Description |
---|---|
<a name="output_autoscaling_group_arn"></a> autoscaling_group_arn | The Amazon Resource Name (ARN) of the Auto Scaling Group. |
<a name="output_autoscaling_group_name"></a> autoscaling_group_name | The name of the Auto Scaling Group. |
<a name="output_autoscaling_lifecycle_hook_name"></a> autoscaling_lifecycle_hook_name | The name of the Lifecycle Hook for the Auto Scaling Group. |
<a name="output_eventbridge_rule_arn"></a> eventbridge_rule_arn | The ARN of the Eventbridge rule for the EC2 lifecycle transition. |
<a name="output_eventbridge_target_arn"></a> eventbridge_target_arn | The ARN of the Eventbridge target corresponding to the Eventbridge rule for the EC2 lifecycle transition. |
<a name="output_iam_role_arn"></a> iam_role_arn | The ARN of the IAM role associated with the Autoscaling Group |
<a name="output_ssm_document_arn"></a> ssm_document_arn | The ARN of the SSM document. |
FAQ
Can we scope it to a github org with both private and public repos ?
Yes but this requires Github Enterprise Cloud and the usage of runner groups to scope permissions of runners to specific repos. If you set the scope to the entire org without runner groups and if the org has both public and private repos, then the risk of using a self-hosted runner incorrectly is a vulnerability within public repos.
If you do not have github enterprise cloud and runner groups cannot be utilized, then it’s best to create new github runners per repo or use the summerwind action-runners-controller via a Github App to set the scope to specific repos.
How can we see the current spot pricing?
Go to ec2instances.info
If we don’t use mixed at all does that mean we can’t do spot?
It’s possible to do spot without using mixed instances but you leave yourself open to zero instance availability with a single instance type.
For example, if you wanted to use spot and use t3.xlarge
in us-east-2
and for some reason, AWS ran out of
t3.xlarge
, you wouldn't have the option to choose another instance type and so all the GitHub Action runs would stall
until availability returned. If you use on-demand pricing, it’s more expensive, but you’re more likely to get scheduling
priority. For guaranteed availability, reserved instances are required.
Do the overrides apply to both the on-demand and the spot instances, or only the spot instances?
Since the overrides affect the launch template, I believe they will affect both spot instances and override since
weighted capacity can be set for either or. The override terraform option is on the ASG’s launch_template
List of nested arguments provides the ability to specify multiple instance types. This will override the same parameter in the launch template. For on-demand instances, Auto Scaling considers the order of preference of instance types to launch based on the order specified in the overrides list. Defined below. And in the terraform resource for
instances_distribution
spot_max_price
- (Optional) Maximum price per unit hour that the user is willing to pay for the Spot instances. Default: an empty string which means the on-demand price. For amixed_instances_policy
, this will do purely on-demand
mixed_instances_policy:
instances_distribution:
on_demand_allocation_strategy: "prioritized"
on_demand_base_capacity: 1
on_demand_percentage_above_base_capacity: 0
spot_allocation_strategy: "capacity-optimized"
spot_instance_pools: null
spot_max_price: []
This will always do spot unless instances are unavailable, then switch to on-demand.
mixed_instances_policy:
instances_distribution:
# ...
spot_max_price: 0.05
If you want a single instance type, you could still use the mixed instances policy to define that like above, or you can
use these other inputs and comment out the mixed_instances_policy
instance_type: "t3.xlarge"
# the below is optional in order to set the spot max price
instance_market_options:
market_type = "spot"
spot_options:
block_duration_minutes: 6000
instance_interruption_behavior: terminate
max_price: 0.05
spot_instance_type = persistent
valid_until: null
The overrides
will override the instance_type
above.
References
- cloudposse/terraform-aws-components - Cloud Posse's upstream component
- AWS: Auto Scaling groups with multiple instance types and purchase options
- InstancesDistribution
[!NOTE] This project is part of Cloud Posse's comprehensive "SweetOps" approach towards DevOps.
<details><summary><strong>Learn More</strong></summary>It's 100% Open Source and licensed under the APACHE2.
</details>
<a href="https://cloudposse.com/readme/header/link?utm_source=github&utm_medium=readme&utm_campaign=cloudposse-terraform-components/aws-github-runners&utm_content=readme_header_link"><img src="https://cloudposse.com/readme/header/img"/></a>
Related Projects
Check out these related projects.
- Cloud Posse Terraform Modules - Our collection of reusable Terraform modules used by our reference architectures.
- Atmos - Atmos is like docker-compose but for your infrastructure
✨ Contributing
This project is under active development, and we encourage contributions from our community. Many thanks to our outstanding contributors:
<a href="https://github.com/cloudposse-terraform-components/aws-github-runners/graphs/contributors"> <img src="https://contrib.rocks/image?repo=cloudposse-terraform-components/aws-github-runners&max=24" /> </a>🐛 Bug Reports & Feature Requests
Please use the issue tracker to report any bugs or file feature requests.
💻 Developing
If you are interested in being a contributor and want to get involved in developing this project or help out with Cloud Posse's other projects, we would love to hear from you!
Hit us up in Slack, in the #cloudposse
channel.
In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
- Review our Code of Conduct and Contributor Guidelines.
- Fork the repo on GitHub
- Clone the project to your own machine
- Commit changes to your own branch
- Push your work back up to your fork
- Submit a Pull Request so that we can review your changes
NOTE: Be sure to merge the latest changes from "upstream" before making a pull request!
🌎 Slack Community
Join our Open Source Community on Slack. It's FREE for everyone! Our "SweetOps" community is where you get to talk with others who share a similar vision for how to rollout and manage infrastructure. This is the best place to talk shop, ask questions, solicit feedback, and work together as a community to build totally sweet infrastructure.
📰 Newsletter
Sign up for our newsletter and join 3,000+ DevOps engineers, CTOs, and founders who get insider access to the latest DevOps trends, so you can always stay in the know. Dropped straight into your Inbox every week — and usually a 5-minute read.
📆 Office Hours <a href="https://cloudposse.com/office-hours?utm_source=github&utm_medium=readme&utm_campaign=cloudposse-terraform-components/aws-github-runners&utm_content=office_hours"><img src="https://img.cloudposse.com/fit-in/200x200/https://cloudposse.com/wp-content/uploads/2019/08/Powered-by-Zoom.png" align="right" /></a>
Join us every Wednesday via Zoom for your weekly dose of insider DevOps trends, AWS news and Terraform insights, all sourced from our SweetOps community, plus a live Q&A that you can’t find anywhere else. It's FREE for everyone!
About
This project is maintained by <a href="https://cpco.io/homepage?utm_source=github&utm_medium=readme&utm_campaign=cloudposse-terraform-components/aws-github-runners&utm_content=">Cloud Posse, LLC</a>. <a href="https://cpco.io/homepage?utm_source=github&utm_medium=readme&utm_campaign=cloudposse-terraform-components/aws-github-runners&utm_content="><img src="https://cloudposse.com/logo-300x69.svg" align="right" /></a>
We are a DevOps Accelerator for funded startups and enterprises. Use our ready-to-go terraform architecture blueprints for AWS to get up and running quickly. We build it with you. You own everything. Your team wins. Plus, we stick around until you succeed.
<a href="https://cpco.io/commercial-support?utm_source=github&utm_medium=readme&utm_campaign=cloudposse-terraform-components/aws-github-runners&utm_content=commercial_support"><img alt="Learn More" src="https://img.shields.io/badge/learn%20more-success.svg?style=for-the-badge"/></a>
Your team can operate like a pro today.
Ensure that your team succeeds by using our proven process and turnkey blueprints. Plus, we stick around until you succeed.
<details> <summary>📚 <strong>See What's Included</strong></summary>- Reference Architecture. You'll get everything you need from the ground up built using 100% infrastructure as code.
- Deployment Strategy. You'll have a battle-tested deployment strategy using GitHub Actions that's automated and repeatable.
- Site Reliability Engineering. You'll have total visibility into your apps and microservices.
- Security Baseline. You'll have built-in governance with accountability and audit logs for all changes.
- GitOps. You'll be able to operate your infrastructure via Pull Requests.
- Training. You'll receive hands-on training so your team can operate what we build.
- Questions. You'll have a direct line of communication between our teams via a Shared Slack channel.
- Troubleshooting. You'll get help to triage when things aren't working.
- Code Reviews. You'll receive constructive feedback on Pull Requests.
- Bug Fixes. We'll rapidly work with you to fix any bugs in our projects.
<a href="https://cloudposse.com/readme/commercial-support/link?utm_source=github&utm_medium=readme&utm_campaign=cloudposse-terraform-components/aws-github-runners&utm_content=readme_commercial_support_link"><img src="https://cloudposse.com/readme/commercial-support/img"/></a>
License
<a href="https://opensource.org/licenses/Apache-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg?style=for-the-badge" alt="License"></a>
<details> <summary>Preamble to the Apache License, Version 2.0</summary> <br/> <br/>Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
</details>
Trademarks
All other trademarks referenced herein are the property of their respective owners.
Copyright © 2017-2024 Cloud Posse, LLC
<a href="https://cloudposse.com/readme/footer/link?utm_source=github&utm_medium=readme&utm_campaign=cloudposse-terraform-components/aws-github-runners&utm_content=readme_footer_link"><img alt="README footer" src="https://cloudposse.com/readme/footer/img"/></a>
<img alt="Beacon" width="0" src="https://ga-beacon.cloudposse.com/UA-76589703-4/cloudposse-terraform-components/aws-github-runners?pixel&cs=github&cm=readme&an=aws-github-runners"/>