{"id":25049231,"url":"https://github.com/dmoove/cdk-gitlab-runner","last_synced_at":"2025-06-21T22:05:39.004Z","repository":{"id":222309218,"uuid":"755952374","full_name":"dmoove/cdk-gitlab-runner","owner":"dmoove","description":"This CDK constructs helps you to setup and maintain a gitlab runner","archived":false,"fork":false,"pushed_at":"2025-06-04T10:58:50.000Z","size":499,"stargazers_count":0,"open_issues_count":8,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-04T13:58:51.548Z","etag":null,"topics":["cdk","gitlab","runner"],"latest_commit_sha":null,"homepage":"https://cdk-gitlab-runner.dmoove.com/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dmoove.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-11T15:11:18.000Z","updated_at":"2024-10-07T18:09:43.000Z","dependencies_parsed_at":"2024-02-29T09:49:15.666Z","dependency_job_id":"c897a230-caaf-436f-97d1-b081619ae34e","html_url":"https://github.com/dmoove/cdk-gitlab-runner","commit_stats":null,"previous_names":["yanu23/cdk-gitlab-runner","dmoove/cdk-gitlab-runner"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/dmoove/cdk-gitlab-runner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmoove%2Fcdk-gitlab-runner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmoove%2Fcdk-gitlab-runner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmoove%2Fcdk-gitlab-runner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmoove%2Fcdk-gitlab-runner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dmoove","download_url":"https://codeload.github.com/dmoove/cdk-gitlab-runner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmoove%2Fcdk-gitlab-runner/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261200393,"owners_count":23123949,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cdk","gitlab","runner"],"created_at":"2025-02-06T08:17:02.488Z","updated_at":"2025-06-21T22:05:33.989Z","avatar_url":"https://github.com/dmoove.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @yanu23/cdk-gitlab-runner\n\nA construct to build gitlab runners running in AWS.\n\n## Example\n\n```typescript\nimport { App, Stack } from 'aws-cdk-lib';\nimport { GitLabRunner, DockerExecutorType } from '@yanu23/cdk-gitlab-runner';\nimport { Secret } from 'aws-cdk-lib/aws-secretsmanager';\nimport {\n  InstanceClass,\n  InstanceSize,\n  InstanceType,\n  MachineImage,\n  Vpc,\n} from 'aws-cdk-lib/aws-ec2';\n\nconst app = new App();\nconst stack = new Stack(app, 'stack');\n\nconst token = Secret.fromSecretNameV2(stack, 'token', 'gitlab-runner-token');\nconst vpc = Vpc.fromLookup(stack, 'vpc', { isDefault: true });\n\nconst runner = new GitLabRunner(stack, 'GitLabRunner', {\n  runnerConfig: {\n    token,\n    concurrent: 4,\n  },\n});\nrunner.addDockerExecutor(DockerExecutorType.SINGLE_INSTANCE, {\n  instanceType: InstanceType.of(InstanceClass.T3A, InstanceSize.MEDIUM),\n  machineImage: MachineImage.latestAmazonLinux2023(),\n  vpc,\n});\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmoove%2Fcdk-gitlab-runner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdmoove%2Fcdk-gitlab-runner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmoove%2Fcdk-gitlab-runner/lists"}