Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ilert/terraform-provider-ilert
ilert's Terraform provider
https://github.com/ilert/terraform-provider-ilert
alerting ilert incident-response oncall-schedule status-page terraform terraform-provider
Last synced: 2 months ago
JSON representation
ilert's Terraform provider
- Host: GitHub
- URL: https://github.com/ilert/terraform-provider-ilert
- Owner: iLert
- License: other
- Created: 2020-10-19T13:26:56.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-11-17T19:06:51.000Z (3 months ago)
- Last Synced: 2024-11-17T20:19:52.034Z (3 months ago)
- Topics: alerting, ilert, incident-response, oncall-schedule, status-page, terraform, terraform-provider
- Language: Go
- Homepage: https://registry.terraform.io/providers/iLert/ilert/latest/docs
- Size: 622 KB
- Stars: 11
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# Terraform Provider
- Website: https://registry.terraform.io/providers/iLert/ilert/latest/docs
## Requirements
- [Terraform](https://www.terraform.io/downloads.html) 1.3.x
- [Go](https://golang.org/doc/install) 1.19 (to build the provider plugin)## Building The Provider
Clone repository to: `$GOPATH/src/github.com/terraform-providers/terraform-provider-ilert`
```sh
$ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers
$ git clone [email protected]:terraform-providers/terraform-provider-ilert.git
```Enter the provider directory and build the provider
```sh
$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-github
$ make build
# or if you're on a mac:
$ gnumake build
```## Using the provider
Detailed documentation for the ilert provider can be found [here](https://registry.terraform.io/providers/iLert/ilert/latest/docs).
## Developing the Provider
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.19+ is _required_). You'll also need to correctly setup a [GOPATH](http://golang.org/doc/code.html#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.
```sh
$ make build
...
$ $GOPATH/bin/terraform-provider-ilert
...
```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.
```sh
make testacc
```## Getting help
We are happy to respond to [GitHub issues][issues] as well.
[issues]: https://github.com/iLert/terraform-provider-ilert/issues/new
#### License
Licensed under either of Apache License, Version
2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in terraform-provider-ilert by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.