No description
  • Go 85.1%
  • Shell 8.1%
  • Makefile 3.7%
  • HTML 3.1%
Find a file
2020-12-07 12:22:38 -07:00
.github Make CoC and support channels more visible 2017-11-01 23:04:18 +01:00
arukas Make acc test 0.12 compliant 2019-03-27 10:46:25 +09:00
scripts Fix Changelog Links Script for arukas provider 2017-06-26 09:48:13 -05:00
vendor Upgrade provider SDK to pluginsdk-v0.12-early6 2019-04-02 09:18:09 +09:00
website Make docs 0.12 compliant 2019-03-27 10:55:36 +09:00
.gitignore Updating Makefile + Add gitignore 2017-06-06 16:25:40 -04:00
.go-version provider: Ensured Go 1.11 in TravisCI and README 2019-03-01 15:51:54 -05:00
.travis.yml deps: use go modules for dep mgmt 2019-03-01 15:52:07 -05:00
CHANGELOG.md Cleanup after v1.1.0 release 2019-04-03 13:56:56 +00:00
GNUmakefile deps: use go modules for dep mgmt 2019-03-01 15:52:07 -05:00
go.mod Upgrade provider SDK to pluginsdk-v0.12-early6 2019-04-02 09:18:09 +09:00
go.sum Upgrade provider SDK to pluginsdk-v0.12-early6 2019-04-02 09:18:09 +09:00
LICENSE initial commit 2017-06-05 20:54:06 +00:00
main.go Initial transfer of provider code 2017-06-06 11:18:39 -04:00
README.md Update README.md 2020-12-07 12:22:38 -07:00

Please note: This Terraform provider is archived, per our provider archiving process. What does this mean?

  1. The code repository and all commit history will still be available.
  2. Existing released binaries will remain available on the releases site.
  3. Issues and pull requests are not being monitored.
  4. New releases will not be published.

If anyone from the community or an interested third party is willing to maintain it, they can fork the repository and publish it to the Terraform Registry. If you are interested in maintaining this provider, please reach out to the Terraform Provider Development Program at terraform-provider-dev@hashicorp.com.

Terraform Arukas 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-arukas

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

Enter the provider directory and build the provider

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

Using the provider

Fill in for each 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 bin
...
$ $GOPATH/bin/terraform-provider-arukas
...

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