No description
  • Go 66.9%
  • Shell 15%
  • Makefile 12.3%
  • HTML 5.8%
Find a file
Radek Simko 745fd2fd0d
Merge pull request #25 from terraform-providers/f-make-website
make: Add website + website-test targets
2018-04-30 16:02:58 +01:00
.github Make CoC and support channels more visible 2017-11-01 23:06:23 +01:00
scripts Fix Changelog Links Script for terraform provider 2017-06-26 14:00:50 -04:00
terraform "defaults" property for terraform_remote_state 2017-09-13 09:34:00 -07:00
vendor Removing a typo 2017-11-03 14:07:22 +01:00
website update docs from core 2018-04-10 13:21:27 -04:00
.gitignore Updating Makefile + Add gitignore 2017-06-06 16:30:04 -04:00
.travis.yml make: Add website + website-test targets 2018-04-30 08:56:29 +01:00
CHANGELOG.md Update CHANGELOG.md 2017-11-03 18:25:10 -07:00
GNUmakefile make: Add website + website-test targets 2018-04-30 08:56:29 +01:00
LICENSE initial commit 2017-06-05 20:54:13 +00:00
main.go Initial transfer of provider code 2017-06-06 12:42:19 -04:00
README.md Update README.md 2017-11-03 18:44:33 -07:00

terraform-provider-terraform

This repository contains a separated version of the terraform provider 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 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.

Requirements

  • Terraform 0.10.x
  • Go 1.9 (to build the provider plugin)

Building The Provider

Clone repository to: $GOPATH/src/github.com/hashicorp/terraform-provider-terraform

$ mkdir -p $GOPATH/src/github.com/hashicorp; cd $GOPATH/src/github.com/hashicorp
$ git clone git@github.com:hashicorp/terraform-provider-terraform

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/hashicorp/terraform-provider-terraform
$ go install .