cdktf-cdktf-provider-gitlab


Namecdktf-cdktf-provider-gitlab JSON
Version 15.3.0 PyPI version JSON
download
home_pagehttps://github.com/cdktf/cdktf-provider-gitlab.git
SummaryPrebuilt gitlab Provider for Terraform CDK (cdktf)
upload_time2025-08-23 04:07:57
maintainerNone
docs_urlNone
authorHashiCorp
requires_python~=3.9
licenseMPL-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # CDKTF prebuilt bindings for gitlabhq/gitlab provider version 18.3.0

This repo builds and publishes the [Terraform gitlab provider](https://registry.terraform.io/providers/gitlabhq/gitlab/18.3.0/docs) bindings for [CDK for Terraform](https://cdk.tf).

## Available Packages

### NPM

The npm package is available at [https://www.npmjs.com/package/@cdktf/provider-gitlab](https://www.npmjs.com/package/@cdktf/provider-gitlab).

`npm install @cdktf/provider-gitlab`

### PyPI

The PyPI package is available at [https://pypi.org/project/cdktf-cdktf-provider-gitlab](https://pypi.org/project/cdktf-cdktf-provider-gitlab).

`pipenv install cdktf-cdktf-provider-gitlab`

### Nuget

The Nuget package is available at [https://www.nuget.org/packages/HashiCorp.Cdktf.Providers.Gitlab](https://www.nuget.org/packages/HashiCorp.Cdktf.Providers.Gitlab).

`dotnet add package HashiCorp.Cdktf.Providers.Gitlab`

### Maven

The Maven package is available at [https://mvnrepository.com/artifact/com.hashicorp/cdktf-provider-gitlab](https://mvnrepository.com/artifact/com.hashicorp/cdktf-provider-gitlab).

```
<dependency>
    <groupId>com.hashicorp</groupId>
    <artifactId>cdktf-provider-gitlab</artifactId>
    <version>[REPLACE WITH DESIRED VERSION]</version>
</dependency>
```

### Go

The go package is generated into the [`github.com/cdktf/cdktf-provider-gitlab-go`](https://github.com/cdktf/cdktf-provider-gitlab-go) package.

`go get github.com/cdktf/cdktf-provider-gitlab-go/gitlab/<version>`

Where `<version>` is the version of the prebuilt provider you would like to use e.g. `v11`. The full module name can be found
within the [go.mod](https://github.com/cdktf/cdktf-provider-gitlab-go/blob/main/gitlab/go.mod#L1) file.

## Docs

Find auto-generated docs for this provider here:

* [Typescript](./docs/API.typescript.md)
* [Python](./docs/API.python.md)
* [Java](./docs/API.java.md)
* [C#](./docs/API.csharp.md)
* [Go](./docs/API.go.md)

You can also visit a hosted version of the documentation on [constructs.dev](https://constructs.dev/packages/@cdktf/provider-gitlab).

## Versioning

This project is explicitly not tracking the Terraform gitlab provider version 1:1. In fact, it always tracks `latest` of `~> 18.0` with every release. If there are scenarios where you explicitly have to pin your provider version, you can do so by [generating the provider constructs manually](https://cdk.tf/imports).

These are the upstream dependencies:

* [CDK for Terraform](https://cdk.tf)
* [Terraform gitlab provider](https://registry.terraform.io/providers/gitlabhq/gitlab/18.3.0)
* [Terraform Engine](https://terraform.io)

If there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.

## Features / Issues / Bugs

Please report bugs and issues to the [CDK for Terraform](https://cdk.tf) project:

* [Create bug report](https://cdk.tf/bug)
* [Create feature request](https://cdk.tf/feature)

## Contributing

### Projen

This is mostly based on [Projen](https://github.com/projen/projen), which takes care of generating the entire repository.

### cdktf-provider-project based on Projen

There's a custom [project builder](https://github.com/cdktf/cdktf-provider-project) which encapsulate the common settings for all `cdktf` prebuilt providers.

### Provider Version

The provider version can be adjusted in [./.projenrc.js](./.projenrc.js).

### Repository Management

The repository is managed by [CDKTF Repository Manager](https://github.com/cdktf/cdktf-repository-manager/).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/cdktf/cdktf-provider-gitlab.git",
    "name": "cdktf-cdktf-provider-gitlab",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "~=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "HashiCorp",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/bb/d9/61e95fd654e5bd1128811124475c727ab9dcf901a6c75c1de0194b68563c/cdktf_cdktf_provider_gitlab-15.3.0.tar.gz",
    "platform": null,
    "description": "# CDKTF prebuilt bindings for gitlabhq/gitlab provider version 18.3.0\n\nThis repo builds and publishes the [Terraform gitlab provider](https://registry.terraform.io/providers/gitlabhq/gitlab/18.3.0/docs) bindings for [CDK for Terraform](https://cdk.tf).\n\n## Available Packages\n\n### NPM\n\nThe npm package is available at [https://www.npmjs.com/package/@cdktf/provider-gitlab](https://www.npmjs.com/package/@cdktf/provider-gitlab).\n\n`npm install @cdktf/provider-gitlab`\n\n### PyPI\n\nThe PyPI package is available at [https://pypi.org/project/cdktf-cdktf-provider-gitlab](https://pypi.org/project/cdktf-cdktf-provider-gitlab).\n\n`pipenv install cdktf-cdktf-provider-gitlab`\n\n### Nuget\n\nThe Nuget package is available at [https://www.nuget.org/packages/HashiCorp.Cdktf.Providers.Gitlab](https://www.nuget.org/packages/HashiCorp.Cdktf.Providers.Gitlab).\n\n`dotnet add package HashiCorp.Cdktf.Providers.Gitlab`\n\n### Maven\n\nThe Maven package is available at [https://mvnrepository.com/artifact/com.hashicorp/cdktf-provider-gitlab](https://mvnrepository.com/artifact/com.hashicorp/cdktf-provider-gitlab).\n\n```\n<dependency>\n    <groupId>com.hashicorp</groupId>\n    <artifactId>cdktf-provider-gitlab</artifactId>\n    <version>[REPLACE WITH DESIRED VERSION]</version>\n</dependency>\n```\n\n### Go\n\nThe go package is generated into the [`github.com/cdktf/cdktf-provider-gitlab-go`](https://github.com/cdktf/cdktf-provider-gitlab-go) package.\n\n`go get github.com/cdktf/cdktf-provider-gitlab-go/gitlab/<version>`\n\nWhere `<version>` is the version of the prebuilt provider you would like to use e.g. `v11`. The full module name can be found\nwithin the [go.mod](https://github.com/cdktf/cdktf-provider-gitlab-go/blob/main/gitlab/go.mod#L1) file.\n\n## Docs\n\nFind auto-generated docs for this provider here:\n\n* [Typescript](./docs/API.typescript.md)\n* [Python](./docs/API.python.md)\n* [Java](./docs/API.java.md)\n* [C#](./docs/API.csharp.md)\n* [Go](./docs/API.go.md)\n\nYou can also visit a hosted version of the documentation on [constructs.dev](https://constructs.dev/packages/@cdktf/provider-gitlab).\n\n## Versioning\n\nThis project is explicitly not tracking the Terraform gitlab provider version 1:1. In fact, it always tracks `latest` of `~> 18.0` with every release. If there are scenarios where you explicitly have to pin your provider version, you can do so by [generating the provider constructs manually](https://cdk.tf/imports).\n\nThese are the upstream dependencies:\n\n* [CDK for Terraform](https://cdk.tf)\n* [Terraform gitlab provider](https://registry.terraform.io/providers/gitlabhq/gitlab/18.3.0)\n* [Terraform Engine](https://terraform.io)\n\nIf there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.\n\n## Features / Issues / Bugs\n\nPlease report bugs and issues to the [CDK for Terraform](https://cdk.tf) project:\n\n* [Create bug report](https://cdk.tf/bug)\n* [Create feature request](https://cdk.tf/feature)\n\n## Contributing\n\n### Projen\n\nThis is mostly based on [Projen](https://github.com/projen/projen), which takes care of generating the entire repository.\n\n### cdktf-provider-project based on Projen\n\nThere's a custom [project builder](https://github.com/cdktf/cdktf-provider-project) which encapsulate the common settings for all `cdktf` prebuilt providers.\n\n### Provider Version\n\nThe provider version can be adjusted in [./.projenrc.js](./.projenrc.js).\n\n### Repository Management\n\nThe repository is managed by [CDKTF Repository Manager](https://github.com/cdktf/cdktf-repository-manager/).\n",
    "bugtrack_url": null,
    "license": "MPL-2.0",
    "summary": "Prebuilt gitlab Provider for Terraform CDK (cdktf)",
    "version": "15.3.0",
    "project_urls": {
        "Homepage": "https://github.com/cdktf/cdktf-provider-gitlab.git",
        "Source": "https://github.com/cdktf/cdktf-provider-gitlab.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a1dbe6d27bcf0b4b7ae2bee382f49c5afd0782ed271227df7179218d1271db1",
                "md5": "2297d70be9d54af92d3d895b9492daa0",
                "sha256": "b701df36d2e2e1f3409e228e0de888bf8ad567d44a8c4051ae0349f9ed8c55e4"
            },
            "downloads": -1,
            "filename": "cdktf_cdktf_provider_gitlab-15.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2297d70be9d54af92d3d895b9492daa0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.9",
            "size": 3187576,
            "upload_time": "2025-08-23T04:07:56",
            "upload_time_iso_8601": "2025-08-23T04:07:56.303810Z",
            "url": "https://files.pythonhosted.org/packages/8a/1d/be6d27bcf0b4b7ae2bee382f49c5afd0782ed271227df7179218d1271db1/cdktf_cdktf_provider_gitlab-15.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bbd961e95fd654e5bd1128811124475c727ab9dcf901a6c75c1de0194b68563c",
                "md5": "e4999b792da22dcbbf59252084b6f6c8",
                "sha256": "810af72ae72a21302b19be6c0293cf7fb03bda893400707f14a2c65eb5354dd2"
            },
            "downloads": -1,
            "filename": "cdktf_cdktf_provider_gitlab-15.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e4999b792da22dcbbf59252084b6f6c8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.9",
            "size": 2948579,
            "upload_time": "2025-08-23T04:07:57",
            "upload_time_iso_8601": "2025-08-23T04:07:57.816013Z",
            "url": "https://files.pythonhosted.org/packages/bb/d9/61e95fd654e5bd1128811124475c727ab9dcf901a6c75c1de0194b68563c/cdktf_cdktf_provider_gitlab-15.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-23 04:07:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cdktf",
    "github_project": "cdktf-provider-gitlab",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cdktf-cdktf-provider-gitlab"
}
        
Elapsed time: 0.76379s