No description
  • Go 94%
  • Shell 2.4%
  • Makefile 1.9%
  • HTML 1.7%
Find a file
Rob Lazzurs 911276c7be Migrating to the Terraform Plugin SDK.
Migrating to the Terraform Plugin SDK using the automated migration
tool. Build and tests pass. No errors with the migration tool.
2020-08-12 16:51:50 -05:00
.github Make CoC and support channels more visible 2017-11-01 23:06:12 +01:00
rundeck Migrating to the Terraform Plugin SDK. 2020-08-12 16:51:50 -05:00
scripts Fix Changelog Links Script for rundeck provider 2017-06-26 14:00:23 -04:00
vendor Migrating to the Terraform Plugin SDK. 2020-08-12 16:51:50 -05:00
website add success_on_empty_node_filter bool 2019-08-02 11:42:19 -05:00
.gitignore Updating Makefile + Add gitignore 2017-06-06 16:29:37 -04:00
.go-version provider: Ensured Go 1.11 in TravisCI and README 2019-05-02 17:57:52 -04:00
.travis.yml deps: use go modules for dep mgmt 2019-05-02 17:58:09 -04:00
CHANGELOG.md Cleanup after v0.4.0 release 2019-08-02 20:13:18 +00:00
GNUmakefile deps: use go modules for dep mgmt 2019-05-02 17:58:09 -04:00
go.mod Migrating to the Terraform Plugin SDK. 2020-08-12 16:51:50 -05:00
go.sum Migrating to the Terraform Plugin SDK. 2020-08-12 16:51:50 -05:00
LICENSE initial commit 2017-06-05 20:54:06 +00:00
main.go Migrating to the Terraform Plugin SDK. 2020-08-12 16:51:50 -05:00
README.md Added ability to read, update notifications. (#24) 2019-06-12 18:22:03 -05:00

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-rundeck

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

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-rundeck
$ 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 build
...
$ $GOPATH/bin/terraform-provider-rundeck
...

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