Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/last9/terraform-provider-papertrail
Papertrail support for Terraform
https://github.com/last9/terraform-provider-papertrail
golang golang-package papertrail terraform terraform-modules
Last synced: 3 months ago
JSON representation
Papertrail support for Terraform
- Host: GitHub
- URL: https://github.com/last9/terraform-provider-papertrail
- Owner: last9
- License: mit
- Created: 2017-06-20T06:42:48.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-02-25T00:47:09.000Z (almost 2 years ago)
- Last Synced: 2023-08-03T13:14:20.000Z (over 1 year ago)
- Topics: golang, golang-package, papertrail, terraform, terraform-modules
- Language: Go
- Homepage: http://blog.oogway.in
- Size: 1.98 MB
- Stars: 15
- Watchers: 5
- Forks: 12
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-provider-papertrail
Requirements
------------- [Terraform](https://www.terraform.io/downloads.html) 0.10.x
- [Go](https://golang.org/doc/install) 1.8 (to build the provider plugin)Building The Provider
---------------------Clone repository to: `$GOPATH/src/github.com/oogway/terraform-provider-papertrail`
```sh
$ mkdir -p $GOPATH/src/github.com/oogway; cd $GOPATH/src/github.com/oogway
$ git clone [email protected]:oogway/terraform-provider-papertrail
```Enter the provider directory and build the provider
```sh
$ cd $GOPATH/src/github.com/oogway/terraform-provider-papertrail
$ go get
$ go build
```For Usage, have a look at docs in `website` directory.
Running Tests
-------------
```sh
$ cd $GOPATH/src/github.com/oogway/terraform-provider-papertrail/papertrail
$ PAPERTRAIL_TOKEN= DESTINATION_PORT= go tests -v
```