Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.