Skip to content

Instantly share code, notes, and snippets.

@akskap
Created April 17, 2020 09:54
Show Gist options
  • Save akskap/3a274f515d60462890ff1588c833a9dd to your computer and use it in GitHub Desktop.
Save akskap/3a274f515d60462890ff1588c833a9dd to your computer and use it in GitHub Desktop.
Gitlab Runner Autoscaling Group
resource "aws_autoscaling_group" "gitlab-runner-autoscaling-group" {
name_prefix = "gitlab-runner-scaling-group"
desired_capacity = "${var.desired_capacity}"
max_size = "${var.max_instance_size}"
min_size = "${var.min_instance_size}"
vpc_zone_identifier = "${var.private_subnet_ids}"
launch_configuration = "${aws_launch_configuration.gitlab_runner_launch_config.name}"
lifecycle {
create_before_destroy = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment