Skip to content

tatari-tv/terraform-provider-altinitycloud

Repository files navigation

Terraform Provider Altinity.Cloud (Terraform Plugin Framework)

This template repository is built on the Terraform Plugin Framework. The template repository built on the Terraform Plugin SDK can be found at terraform-provider-scaffolding. See Which SDK Should I Use? in the Terraform documentation for additional information.

This repository is a Terraform provider. It has...

  • A resource and a data source (internal/provider/),
  • Examples (examples/) and generated documentation (docs/),
  • Miscellaneous meta files.

Please see the GitHub template repository documentation for how to create a new repository from this template on GitHub.

Requirements

Building The Provider

go install .

Adding Dependencies

This provider uses Go modules. Please see the Go documentation for the most up to date information about using Go modules.

To add a new dependency github.com/author/dependency to your Terraform provider:

go get github.com/author/dependency
go mod tidy

Then commit the changes to go.mod and go.sum.

Using the provider

Fill this in for each provider

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (see Requirements above). You can download binaries from release page.

You will need to import the gpg public key in the repository before downloading the binary

cat goreleaser.pub | gpg --import

Create/Update .terraformrc to override the provider with local binary

cat << EOF > /tmp/yourfilehere
provider_installation {

  dev_overrides {
      "tatari.tv/dev/altinitycloud" = "/Users/path/to/go/bin"
  }

  # For all other providers, install them directly from their origin provider
  # registries as normal. If you omit this, Terraform will _only_ use
  # the dev_overrides block, and so no other providers will be available.
  direct {}
}
EOF

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

To generate or update documentation, run go generate.

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