{"id":13785521,"url":"https://github.com/hashicorp/terraform-provider-nomad","last_synced_at":"2026-04-10T00:10:30.369Z","repository":{"id":38188533,"uuid":"93446043","full_name":"hashicorp/terraform-provider-nomad","owner":"hashicorp","description":"Terraform Nomad provider","archived":false,"fork":false,"pushed_at":"2025-04-24T18:03:00.000Z","size":11506,"stargazers_count":147,"open_issues_count":19,"forks_count":101,"subscribers_count":24,"default_branch":"main","last_synced_at":"2025-04-24T19:22:44.955Z","etag":null,"topics":["nomad","terraform","terraform-provider"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/providers/hashicorp/nomad/latest","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/hashicorp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":".github/SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-06-05T20:53:54.000Z","updated_at":"2025-04-24T18:03:02.000Z","dependencies_parsed_at":"2023-02-17T20:31:04.134Z","dependency_job_id":"4d30d4e5-f042-4426-9bc1-ed74bb628daf","html_url":"https://github.com/hashicorp/terraform-provider-nomad","commit_stats":{"total_commits":686,"total_committers":86,"mean_commits":7.976744186046512,"dds":0.6865889212827989,"last_synced_commit":"1261cda5323b25f8a81974410cf59204b0343d23"},"previous_names":["terraform-providers/terraform-provider-nomad"],"tags_count":38,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Fterraform-provider-nomad","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Fterraform-provider-nomad/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Fterraform-provider-nomad/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Fterraform-provider-nomad/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hashicorp","download_url":"https://codeload.github.com/hashicorp/terraform-provider-nomad/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254509478,"owners_count":22082892,"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":["nomad","terraform","terraform-provider"],"created_at":"2024-08-03T19:01:01.361Z","updated_at":"2025-12-12T00:39:29.666Z","avatar_url":"https://github.com/hashicorp.png","language":"Go","funding_links":[],"categories":["Plugins"],"sub_categories":["User Interfaces and Dashboards"],"readme":"Nomad Terraform Provider\n========================\n\n- Website: https://registry.terraform.io/providers/hashicorp/nomad\n\nMaintainers\n-----------\n\nThis provider plugin is maintained by the Nomad team at [HashiCorp](https://www.hashicorp.com/).\n\nRequirements\n------------\n\n-\t[Terraform](https://www.terraform.io/downloads.html) 1.0.x\n-\t[Go](https://golang.org/doc/install) 1.24 (to build the provider plugin)\n\nBuilding The Provider\n---------------------\n\nClone repository to: `$GOPATH/src/github.com/hashicorp/terraform-provider-nomad`\n\n```sh\n$ mkdir -p $GOPATH/src/github.com/hashicorp; cd $GOPATH/src/github.com/hashicorp\n$ git clone git@github.com:hashicorp/terraform-provider-nomad\n```\n\nEnter the provider directory and build the provider\n\n```sh\n$ cd $GOPATH/src/github.com/hashicorp/terraform-provider-nomad\n$ make build\n```\n\nUsing the provider\n----------------------\n\nTo use a released provider in your Terraform environment, run\n[`terraform init`](https://www.terraform.io/docs/commands/init.html) and\nTerraform will automatically install the provider. To specify a particular\nprovider version when installing released providers, see the [Terraform\ndocumentation on provider versioning](https://www.terraform.io/docs/configuration/providers.html#version-provider-versions).\n\nRefer to the section below for instructions on how to to use a custom-built\nversion of the provider.\n\nFor either installation method, documentation about the provider specific\nconfiguration options can be found on the\n[provider's website](https://www.terraform.io/docs/providers/nomad/).\n\nDeveloping the Provider\n---------------------------\n\nIf you wish to work on the provider, you'll first need\n[Go](http://www.golang.org) installed on your machine (version 1.20+ is\n*required*). You'll also need to correctly setup a\n[GOPATH](http://golang.org/doc/code.html#GOPATH), as well as adding\n`$GOPATH/bin` to your `$PATH`.\n\nTo compile the provider, run `make build`. This will build the provider and put\nthe provider binary in the `$GOPATH/bin` directory.\n\n```sh\n$ make build\n...\n$ $GOPATH/bin/terraform-provider-nomad\n...\n```\n\nTo use the provider binary in a local configuration, create a file called\n`.terraformrc` in your home directory and specify a [development\noverride][tf_docs_dev_overrides] for the `nomad` provider.\n\n```hcl\nprovider_installation {\n  dev_overrides {\n    \"hashicorp/nomad\" = \"\u003cABSOLUTE PATH TO YOUR GOPATH\u003e/bin/\"\n  }\n}\n```\n\nIn order to test the provider, you can simply run `make test`.\n\n```sh\n$ make test\n```\n\nIn order to run the full suite of Acceptance tests:\n\n1. setup test environment\n  ```sh\n  nomad agent -dev -acl-enabled\n  ```\n\n2. obtain a management token\n  ```sh\n  nomad acl bootstrap\n  ```\n\n4. set nomad agent address (if differs from `http://localhost:4646`) and token secret ID and run tests\n  ```sh\n  NOMAD_TOKEN=\u003coutput of nomad acl bootstrap's Secret ID\u003e NOMAD_ADDR=http://\u003chost\u003e:\u003cport\u003e make testacc\n  ```\n\nAcceptance tests expect fresh instance of nomad agent, so all steps must be\nperformed every time tests are executed.\n\n*Note:* Acceptance tests create real resources, and may cost money to run.\n\n[tf_docs_dev_overrides]: https://developer.hashicorp.com/terraform/cli/config/config-file#development-overrides-for-provider-developers\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhashicorp%2Fterraform-provider-nomad","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhashicorp%2Fterraform-provider-nomad","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhashicorp%2Fterraform-provider-nomad/lists"}