Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hashicorp/terraform-provider-terraform
Terraform terraform provider
https://github.com/hashicorp/terraform-provider-terraform
terraform terraform-provider
Last synced: 3 months ago
JSON representation
Terraform terraform provider
- Host: GitHub
- URL: https://github.com/hashicorp/terraform-provider-terraform
- Owner: hashicorp
- License: mpl-2.0
- Archived: true
- Created: 2017-06-05T20:54:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-30T15:03:02.000Z (over 6 years ago)
- Last Synced: 2024-09-19T06:14:10.844Z (4 months ago)
- Topics: terraform, terraform-provider
- Language: Go
- Homepage: https://www.terraform.io/docs/providers/terraform/
- Size: 7.31 MB
- Stars: 24
- Watchers: 14
- Forks: 22
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
terraform-provider-terraform
============================This repository contains a separated version of [the `terraform` provider](https://www.terraform.io/docs/providers/terraform/index.html) that can be used with 0.10.x releases of Terraform Core.
Prior to 0.10, and from 0.11 onwards, this provider is [an integrated part of Terraform Core](https://github.com/hashicorp/terraform/tree/master/builtin/providers/terraform) and not packaged as a provider plugin.
No further development of this provider will occur in this repository, with future changes instead being made in the Terraform Core repository. Please do not open new issues or pull requests against this repository: instead, open them in [the Terraform Core repository](https://github.com/hashicorp/terraform).
Requirements
------------- [Terraform](https://www.terraform.io/downloads.html) 0.10.x
- [Go](https://golang.org/doc/install) 1.9 (to build the provider plugin)Building The Provider
---------------------Clone repository to: `$GOPATH/src/github.com/hashicorp/terraform-provider-terraform`
```sh
$ mkdir -p $GOPATH/src/github.com/hashicorp; cd $GOPATH/src/github.com/hashicorp
$ git clone [email protected]:hashicorp/terraform-provider-terraform
```Enter the provider directory and build the provider
```sh
$ cd $GOPATH/src/github.com/hashicorp/terraform-provider-terraform
$ go install .
```