Terraform GreenHost provider. forked from github.com/digitalocean/terraform-provider-digitalocean
Go to file
Andrew Starr-Bochicchio e972ddff2c
Do not error out if terraform:default-node-pool tag is missing when reading k8s cluster. (#401)
In https://github.com/terraform-providers/terraform-provider-digitalocean/pull/365, a
check was added to the `digitaloceanKubernetesClusterRead` method for the
`terraform:default-node-pool` tag in order to support importing. A latter commit in
that PR added a separate `resourceDigitalOceanKubernetesClusterImportState` method
that enforces this. The Kubernetes cluster data source also uses the
`digitaloceanKubernetesClusterRead` method and should support accessing cluster
information even if a node pool is not tagged. This PR changes the errors into
warning as it is still useful for debugging.

Fixes: https://github.com/terraform-providers/terraform-provider-digitalocean/issues/399
2020-03-19 14:13:55 -04:00
.github
digitalocean Do not error out if terraform:default-node-pool tag is missing when reading k8s cluster. (#401) 2020-03-19 14:13:55 -04:00
examples Correct Kubernetes example 2018-12-12 13:32:30 +00:00
internal/datalist generic filter/sort framework for datasources (#385) 2020-03-04 12:05:01 -05:00
scripts
vendor Add support for MySQL user authentication management (#393) 2020-03-17 16:44:25 -04:00
website fix some minor issues with recently-updated docs (#398) 2020-03-19 10:08:02 -04:00
.gitignore
.go-version Update .go-version to 1.12.9 (#323) 2019-10-23 19:38:18 -04:00
.travis.yml Update .go-version to 1.12.9 (#323) 2019-10-23 19:38:18 -04:00
CHANGELOG.md Cleanup after v1.15.0 release 2020-03-18 20:19:51 +00:00
GNUmakefile deps: use go modules for dep mgmt 2019-03-01 15:53:10 -05:00
LICENSE
README.md fixed typo in readme 2019-05-24 14:31:44 -04:00
go.mod Add support for MySQL user authentication management (#393) 2020-03-17 16:44:25 -04:00
go.sum Add support for MySQL user authentication management (#393) 2020-03-17 16:44:25 -04:00
main.go Upgrade to terraform-plugin-sdk (#321) 2019-10-22 17:44:03 -04:00

README.md

Terraform Provider

Requirements

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

Building The Provider

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

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

Enter the provider directory and build the provider

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

Using the provider

See the DigitalOcean Provider documentation to get started using the DigitalOcean provider.

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-digitalocean
...

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

In order to run a specific acceptance test, use the TESTARGS environment variable. For example, the following command will run TestAccDigitalOceanDomain_Basic acceptance test only:

$ make testacc TESTARGS='-run=TestAccDigitalOceanDomain_Basic'

For information about writing acceptance tests, see the main Terraform contributing guide.