No description
  • Go 98.7%
  • HTML 1.1%
  • Shell 0.1%
  • Makefile 0.1%
Find a file
Etienne Fontaine 9c8fe683d0
Update resourcemanager_cloud_iam_binding.html.markdown (#102)
Members can also come from federation. I'm updating the doc so users are aware of the feature.
2020-08-31 13:35:05 +03:00
scripts sync upstream 2019-09-27 10:48:39 +00:00
vendor Merge pull request #156 in CLOUD/terraform-provider-yandex-mirror from feature/support-gpus-in-k8s-ng to master 2020-06-15 16:27:20 +03:00
website Update resourcemanager_cloud_iam_binding.html.markdown (#102) 2020-08-31 13:35:05 +03:00
yandex do not recreate autoscaled k8s ngs on min/max size change 2020-08-13 13:19:52 +03:00
.gitignore Add gitignore and license 2018-10-30 16:58:30 +03:00
.golangci.yml Add Travis CI (#47) 2020-03-10 13:46:56 +03:00
.travis.yml Add Travis CI (#47) 2020-03-10 13:46:56 +03:00
CHANGELOG.md Cleanup after v0.43.0 release 2020-08-20 15:39:22 +00:00
GNUmakefile Add Travis CI (#47) 2020-03-10 13:46:56 +03:00
go.mod Merge pull request #156 in CLOUD/terraform-provider-yandex-mirror from feature/support-gpus-in-k8s-ng to master 2020-06-15 16:27:20 +03:00
go.sum Merge pull request #156 in CLOUD/terraform-provider-yandex-mirror from feature/support-gpus-in-k8s-ng to master 2020-06-15 16:27:20 +03:00
LICENSE Add gitignore and license 2018-10-30 16:58:30 +03:00
main.go migrate to Terraform Plugin SDK 2019-09-26 11:23:42 +03:00
README.md Update links and references in README 2019-03-26 11:14:54 +03:00

Terraform Provider

Requirements

  • Terraform 0.11+
  • Go 1.11 (to build the provider plugin)

Building The Provider

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

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

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-yandex
$ make build

Using the provider

If you're building the provider, follow the instructions to install it as a plugin. After placing it into your plugins directory, run terraform init to initialize it. Documentation about the provider specific configuration options can be found on the provider's website.

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (version 1.11+ is required). You'll also need to correctly setup a GOPATH, as well as adding $GOPATH/bin to your $PATH.

To compile the provider, run make build. This will build the provider and put the provider binary in the $GOPATH/bin directory.

$ make build
...
$ $GOPATH/bin/terraform-provider-yandex
...

In order to test the provider, you can simply run make test.

$ make test

In order to run the full suite of Acceptance tests, run make testacc.

Note: Acceptance tests create real resources, and often cost money to run.

$ make testacc