{"id":20482915,"url":"https://github.com/rsrchboy/terraform-provider-gitlabci","last_synced_at":"2026-04-17T22:03:23.967Z","repository":{"id":64302332,"uuid":"296703924","full_name":"rsrchboy/terraform-provider-gitlabci","owner":"rsrchboy","description":"Mirror of https://gitlab.com/rsrchboy/terraform-provider-gitlabci/, for registry.terraform.io","archived":false,"fork":false,"pushed_at":"2022-11-25T22:51:26.000Z","size":5217,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-05T15:51:48.686Z","etag":null,"topics":["gitlab","terraform-provider"],"latest_commit_sha":null,"homepage":"https://gitlab.com/rsrchboy/terraform-provider-gitlabci","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rsrchboy.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}},"created_at":"2020-09-18T18:46:24.000Z","updated_at":"2022-02-21T18:24:48.000Z","dependencies_parsed_at":"2023-01-15T09:45:26.313Z","dependency_job_id":null,"html_url":"https://github.com/rsrchboy/terraform-provider-gitlabci","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/rsrchboy/terraform-provider-gitlabci","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rsrchboy%2Fterraform-provider-gitlabci","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rsrchboy%2Fterraform-provider-gitlabci/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rsrchboy%2Fterraform-provider-gitlabci/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rsrchboy%2Fterraform-provider-gitlabci/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rsrchboy","download_url":"https://codeload.github.com/rsrchboy/terraform-provider-gitlabci/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rsrchboy%2Fterraform-provider-gitlabci/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31947761,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["gitlab","terraform-provider"],"created_at":"2024-11-15T16:15:10.148Z","updated_at":"2026-04-17T22:03:23.917Z","avatar_url":"https://github.com/rsrchboy.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# terraform-provider-gitlabci\n\nGiven a registration token, register a runner with GitLab.\n\n# Synopsis\n\n```terraform\nterraform {\n    required_providers {\n        gitlabci = {\n            source = \"registry.terraform.io/rsrchboy/gitlabci\"\n        }\n    }\n}\n\nprovider \"gitlabci\" {\n    base_url = \"https://gitlab.com/api/v4\"\n}\n\nresource \"gitlabci_runner_token\" \"this\" {\n    registration_token = \"...\"\n    run_untagged       = true\n    active             = true\n    locked             = true\n    tags = [\n        \"jinx\",\n        \"powder\",\n        \"cupcake\",\n    ]\n}\n```\n\n# Description\n\nThe [GitLab provider for terraform](https://github.com/terraform-providers/terraform-provider-gitlab) is rather nice.  However, it (currently) has\na couple limitations:\n\n* Runners cannot be registered; and\n* API tokens are required.\n\nThis is a limited functionality provider, aimed only at making it trivial to\ncreate / destroy registered runner tokens while requiring nothing more than\nthe relevant [registration token](https://docs.gitlab.com/ce/api/runners.html#registration-and-authentication-tokens).\n\nThis provider also provides data sources related to GitLab CI, including\n[`gitlabci_runner_config`](data-sources/runner_config), a data source allowing\nrunner configuration to be generated (much as, say, the AWS provider's\n`aws_iam_policy_document` does for IAM policies).\n\n# Documentation\n\nThis module is published to the [public terraform registry](https://registry.terraform.io).\nPlease see the documentation there:\n\n* [`terraform-provider-gitlabci` documentation](https://registry.terraform.io/providers/rsrchboy/gitlabci/latest/docs)\n\n# Releases and Source\n\nThe primary home for this software is on GitLab.  However, AFAICT the\n[terraform registry only supports GitHub releases](https://www.terraform.io/registry/providers/publishing#creating-a-github-release)\nwe also mirror-push to a repository on GitHub.  GitHub Actions are used to\nbuild releases over there, and those releases are then imported by the\n[terraform registry](https://registry.terraform.io/providers/rsrchboy/gitlabci/latest).\nGitLab CI is used for everything else -- including building releases here, as\nwell.\n\n* Home: https://gitlab.com/rsrchboy/terraform-provider-gitlabci\n* Mirror: https://github.com/rsrchboy/terraform-provider-gitlabci\n* Registry: https://registry.terraform.io/providers/rsrchboy/gitlabci/latest\n\n# Author and Copyright\n\nThis software is Copyright 2019-2022 Chris Weyl \u003ccweyl@alumni.drew.edu\u003e.\n\nThis is free software, licensed under the GNU GPL v3+.  See the `LICENSE` file\nfor more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frsrchboy%2Fterraform-provider-gitlabci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frsrchboy%2Fterraform-provider-gitlabci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frsrchboy%2Fterraform-provider-gitlabci/lists"}