File tree Expand file tree Collapse file tree 4 files changed +24
-0
lines changed Expand file tree Collapse file tree 4 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 11.idea /
22terraform.tfstate *
33.terraform *
4+ examples /terraform.tfstate *
5+ examples /.terraform *
Original file line number Diff line number Diff line change 1+ module "gitlab_shell_runner" {
2+ source = " ../"
3+
4+ ami_id = " ami-0addfae420fd47aab"
5+ instance_type = " t2.micro"
6+ instance_count = 2
7+ vpc_security_group_ids = [" sg-0b0b0b0b0b0b0b0b0" ]
8+ subnet_id = " subnet-0b0e1c4b5b1b1b1b1"
9+ gitlab_url = " https://gitlab.example.com"
10+ runner_registration_token = " runner-registration-token-here"
11+ ssh_public_key = " ssh-public-key-here"
12+ }
Original file line number Diff line number Diff line change 1+ terraform {
2+ required_providers {
3+ aws = {
4+ source = " hashicorp/aws"
5+ version = " ~> 4.49.0"
6+ }
7+ }
8+
9+ required_version = " ~> 1.3.0"
10+ }
You can’t perform that action at this time.
0 commit comments