{"id":15175982,"url":"https://github.com/hashicorp/terraform-provider-jdcloud","last_synced_at":"2025-10-01T14:31:24.042Z","repository":{"id":57532583,"uuid":"178048927","full_name":"hashicorp/terraform-provider-jdcloud","owner":"hashicorp","description":"Terraform JDcloud provider. Please note: This Terraform provider is archived per our provider archiving process: https://terraform.io/docs/internals/archiving.html","archived":true,"fork":false,"pushed_at":"2020-12-08T17:08:39.000Z","size":44023,"stargazers_count":10,"open_issues_count":1,"forks_count":14,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-01-08T13:07:37.880Z","etag":null,"topics":["jdcloud","terraform","terraform-provider"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io","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":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-03-27T18:03:51.000Z","updated_at":"2024-10-07T06:54:55.000Z","dependencies_parsed_at":"2022-09-26T18:20:43.144Z","dependency_job_id":null,"html_url":"https://github.com/hashicorp/terraform-provider-jdcloud","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Fterraform-provider-jdcloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Fterraform-provider-jdcloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Fterraform-provider-jdcloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hashicorp%2Fterraform-provider-jdcloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hashicorp","download_url":"https://codeload.github.com/hashicorp/terraform-provider-jdcloud/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234878293,"owners_count":18900676,"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":["jdcloud","terraform","terraform-provider"],"created_at":"2024-09-27T13:00:25.507Z","updated_at":"2025-10-01T14:31:14.030Z","avatar_url":"https://github.com/hashicorp.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- archived-provider --\u003e\nPlease note: This Terraform provider is archived, per our [provider archiving process](https://terraform.io/docs/internals/archiving.html). What does this mean?\n1. The code repository and all commit history will still be available.\n1. Existing released binaries will remain available on the releases site.\n1. Issues and pull requests are not being monitored.\n1. New releases will not be published.\n\nIf anyone from the community or an interested third party is willing to maintain it, they can fork the repository and [publish it](https://www.terraform.io/docs/registry/providers/publishing.html) to the Terraform Registry. If you are interested in maintaining this provider, please reach out to the [Terraform Provider Development Program](https://www.terraform.io/guides/terraform-provider-development-program.html) at *terraform-provider-dev@hashicorp.com*.\n\nTerraform Provider for JDCloud\n==================\n\n[![Build Status](https://travis-ci.com/jdclouddevelopers/terraform-provider-jdcloud.svg?branch=master)](https://travis-ci.com/jdclouddevelopers/terraform-provider-jdcloud)\n\n\n# Requirements\n\n* Terraform 0.10+\n* Go 1.12(to build the provider plugin)\n\n# Using the provider \n\n* Prepare a folder for Terraform \n```bash\nmkdir terraform \u0026\u0026 cd terraform \n```\n* Prepare your `jdcloud.tf`. This is where Terraform begins \n```bash\ntouch jdcloud.tf\n```\n* Download [Terraform](https://www.terraform.io/downloads.html) \n* Download [Terraform-Jdcloud-Plugin](https://github.com/jdclouddevelopers/terraform-provider-jdcloud)\n* Launch!\n```bash\nterraform init\n``` \nTerraform is now start working, it will manage your resources according to your `jdcloud.tf`\nWe would recommend our users begin with some simple resource, say `VPC` and `ElasticIP`\n\nHow to write `jdcloud.tf` ? [Check Here](https://github.com/XiaohanLiang/terraform-provider-jdcloud/blob/master/example/main.tf)\n\n# Developing the Provider\n\nContributions and advices to this plugin is very welcomed. In order to get start with, you \nneed to do the following steps.\n\n### 1.Prepare Golang Environment\n\nFirst you will need to have [Golang1.12](https://golang.org/dl/) installed on your machine. Besides, \nYou will need to correctly set up $GOPATH, as well as adding `$GOPATH/bin` to your `$PATH`\n\n### 2.Compile project\n\n\nAfter you have modified the code you can compile this plugin by `make build`. \nRemember to format your code by using `go fmt`. If it works fine. Plugin will be in your $GOPATH/bin\n``` go\n$ make build\n==\u003e Checking that code complies with gofmt requirements...\ngo install\n\n$ ls $GOPATH/bin | grep jdcloud\nterraform-provider-jdcloud\n```   \n\n### 3.Running Acceptance Test\n\n\nAcceptance test can be an important part of developing process. Basically, it will first create a resource,\nvalidate its attributes and see if it works as expected. Update this resource if applied and eventually delete this resource.\nAcceptance tests are files in `jdcloud` with suffix `_test.go`. You can invoke an acceptance test by \n```bash\nmake testacc\n```\n\n_Note_ \n* Acceptance creates real resources, it will probably cost some money.\n* Process usually takes 20~30 minutes depends on your network condition.\n\n## Contact Us \n\nContact us JDCloud-Team \u003cdevops@jd.com\u003e\n\n\n## License\n\nMozilla Public License 2.0\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhashicorp%2Fterraform-provider-jdcloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhashicorp%2Fterraform-provider-jdcloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhashicorp%2Fterraform-provider-jdcloud/lists"}