Last active
April 17, 2020 09:50
-
-
Save akskap/c25660bfcad789c149c317ca38983ef6 to your computer and use it in GitHub Desktop.
Terraform Launch Config Gitlab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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