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

https://github.com/roxy-wi/terraform-provider-rmon

Terraform provider for RMON
https://github.com/roxy-wi/terraform-provider-rmon

Last synced: 6 months ago
JSON representation

Terraform provider for RMON

Awesome Lists containing this project

README

          

# Terraform Provider for RMON

The Terraform Provider for RMON allows you to manage RMON resources such as UDP listeners and groups.

## Requirements

- [Terraform](https://www.terraform.io/downloads.html) v1.7.0+
- Go 1.22.5+ (to build the provider)

## Building The Provider

Clone the repository and build the provider using the Go toolchain:

```sh
git clone
cd
go build -o terraform-provider-rmon
```

## Installing The Provider

Move the binary into the Terraform plugins directory:

```sh
mkdir -p ~/.terraform.d/plugins/rmon.com/rmon/1.0.0/linux_amd64
mv terraform-provider-rmon ~/.terraform.d/plugins/rmon.com/rmon/1.0.0/linux_amd64
```

## Using The Provider

To use the provider, include it in your Terraform configuration:

```hcl
provider "rmon" {
base_url = "https://you_address/"
login = "your-login"
password = "your-password"
}
```

## License

MIT License. See [LICENSE](./LICENSE) for details.