No description
  • Go 90.3%
  • Shell 3.7%
  • Makefile 3%
  • HTML 3%
Find a file
OpenTofu Core Development Team 65675281c9 Apply GitHub workflow changes
2025-11-18 12:21:04 +02:00
.github Apply GitHub workflow changes 2025-11-18 12:21:04 +02:00
clc Transfer clc provider 2017-06-06 11:36:08 -04:00
examples/webapp Fmt all the config files 2016-09-22 11:49:09 +00:00
scripts Fix Changelog Links Script for clc provider 2017-06-26 09:48:56 -05:00
vendor vendor: github.com/hashicorp/terraform/...@v0.10.0 2017-08-10 12:26:57 +02:00
website add archive notice 2019-04-30 09:03:45 -07:00
.gitignore Updating Makefile + Add gitignore 2017-06-06 16:26:18 -04:00
.travis.yml make: Add website + website-test targets 2018-04-30 08:52:05 +01:00
CHANGELOG.md Cleanup after v0.1.0 release 2017-06-20 14:39:41 +00:00
GNUmakefile make: Add website + website-test targets 2018-04-30 08:52:05 +01:00
LICENSE initial commit 2017-06-05 20:54:11 +00:00
main.go Initial transfer of provider code 2017-06-06 11:36:13 -04:00
README.md Update README.md 2020-12-07 12:29:29 -07:00

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 Provider

Requirements

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

Building The Provider

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

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

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-clc
$ 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.8+ 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-clc
...

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