{"id":23009567,"url":"https://github.com/devolutions/terraform-provider-dvls","last_synced_at":"2026-03-04T18:05:15.513Z","repository":{"id":149609357,"uuid":"596711207","full_name":"Devolutions/terraform-provider-dvls","owner":"Devolutions","description":"Devolutions Server Terraform Provider","archived":false,"fork":false,"pushed_at":"2025-01-06T15:33:15.000Z","size":80,"stargazers_count":0,"open_issues_count":2,"forks_count":2,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-29T20:11:16.583Z","etag":null,"topics":["automation","devops","dvls","go","terraform"],"latest_commit_sha":null,"homepage":"https://devolutions.net/server","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Devolutions.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-02T19:18:28.000Z","updated_at":"2025-01-06T15:33:17.000Z","dependencies_parsed_at":"2025-01-06T16:34:08.053Z","dependency_job_id":"faf106a8-1c72-4ba2-b602-8a2f819c41b4","html_url":"https://github.com/Devolutions/terraform-provider-dvls","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Devolutions%2Fterraform-provider-dvls","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Devolutions%2Fterraform-provider-dvls/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Devolutions%2Fterraform-provider-dvls/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Devolutions%2Fterraform-provider-dvls/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Devolutions","download_url":"https://codeload.github.com/Devolutions/terraform-provider-dvls/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250343909,"owners_count":21415037,"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":["automation","devops","dvls","go","terraform"],"created_at":"2024-12-15T09:14:58.524Z","updated_at":"2026-03-04T18:05:15.500Z","avatar_url":"https://github.com/Devolutions.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform Provider for Devolutions Server (Terraform Plugin Framework)\n:warning: **This provider is a work in progress, expect breaking changes between releases** :warning:\n\nTerraform Provider for managing your Devolutions Server instance.\n\n## Compatibility\n\n| Provider version | DVLS version   |\n|------------------|----------------|\n| 0.6.0+           | 2026.x         |\n| 0.5.x            | 2025.x         |\n\n## Requirements\n\n- [Terraform](https://www.terraform.io/downloads.html) \u003e= 1.0\n- [Go](https://golang.org/doc/install) \u003e= 1.26\n- [Devolutions Server](https://devolutions.net/server) \u003e= 2026.x\n\n## Building The Provider\n\n1. Clone the repository\n1. Enter the repository directory\n1. Build the provider using the Go `install` command:\n\n```shell\ngo install\n```\n\n## Adding Dependencies\n\nThis provider uses [Go modules](https://github.com/golang/go/wiki/Modules).\nPlease see the Go documentation for the most up to date information about using Go modules.\n\nTo add a new dependency `github.com/author/dependency` to your Terraform provider:\n\n```shell\ngo get github.com/author/dependency\ngo mod tidy\n```\n\nThen commit the changes to `go.mod` and `go.sum`.\n\n## Using the provider\n\nVisit the Terraform Registry at https://registry.terraform.io/providers/Devolutions/dvls/latest for usage information.\n\n## Developing the Provider\n\nIf you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (see [Requirements](#requirements) above).\n\nTo compile the provider, run `go install`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.\n\nTo generate or update documentation, run `go generate`.\n\nIn order to run the full suite of Acceptance tests, run `make testacc`.\n\n*Note:* Acceptance tests create real resources, and often cost money to run.\n\n```shell\nmake testacc\n```\n\n## Testing the Provider while developing\n\nIn order to perform a test of the provider, create/update the `~/.terraformrc` (`%APPDATA%\\terraform.rc` on Windows) file with the following content:\n\n```hcl\nprovider_installation {\n  dev_overrides {\n    \"devolutions/dvls\" = \"/Users/USERNAME/go/bin\"\n  }\n  direct {\n  }\n}\n```\n\nReplace `/Users/USERNAME/go/bin` with the path to the compiled provider binary according to your operating system and environment.\n\nThen run the following command, assuming you are on macOS or Linux:\n\n```shell\ngo build -o ~/go/bin/terraform-provider-dvls_v0.6.0\nchmod +x ~/go/bin/terraform-provider-dvls_v0.6.0\n```\nNotes: the version number should match the version of the provider you are working on.\n\nYou can then create a test.tf or example.tf file with the required content; here is a sample:\n\n```hcl\nprovider \"dvls\" {\n  base_uri   = \"https://your-dvls-instance.com/\"\n  app_id     = \"your-app-id\"\n  app_secret = \"your-app-secret\"\n}\n\ndata \"dvls_entry_website\" \"example\" {\n  id = \"id-of-website-entry\"\n}\n\noutput \"website_name\" {\n  value = data.dvls_entry_website.example.name\n}\n\nterraform {\n  required_providers {\n    dvls = {\n      source = \"devolutions/dvls\"\n    }\n  }\n}\n```\n\nThen run the following command:\n\n```shell\nterraform plan\n```\n\nThis will be the output:\n\n```shell\n│ Warning: Provider development overrides are in effect\n│\n│ The following provider development overrides are set in the CLI configuration:\n│  - devolutions/dvls in /Users/USERNAME/go/bin\n│\n│ The behavior may therefore not match any released version of the provider and applying changes may cause the state to become incompatible\n│ with published releases.\n╵\ndata.dvls_entry_website.example: Reading...\ndata.dvls_entry_website.example: Read complete after 1s [id=123e4567-e89b-12d3-a456-426614174000]\n\nChanges to Outputs:\n  + website_name = \"TestWebsite\"\n```\n\nPlease note that the `.gitignore` already ignores the `dev.tfrc`, `.terraform.lock.hcl`, `test.tf`, `example.tf`, and `terraform.tfstate` files and the folder `.terraform/`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevolutions%2Fterraform-provider-dvls","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevolutions%2Fterraform-provider-dvls","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevolutions%2Fterraform-provider-dvls/lists"}