Skip to content

Instantly share code, notes, and snippets.

@akskap
Last active April 17, 2020 09:50
Show Gist options
  • Save akskap/c25660bfcad789c149c317ca38983ef6 to your computer and use it in GitHub Desktop.
Save akskap/c25660bfcad789c149c317ca38983ef6 to your computer and use it in GitHub Desktop.
Terraform Launch Config Gitlab
resource "aws_launch_configuration" "gitlab_runner_launch_config" {
name_prefix = "${var.application_name}-launch-config"
associate_public_ip_address = false
image_id = "${var.launch_config_ami_id}"
instance_type = "${var.launch_config_instance_type}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment