https://github.com/signoz/terraform-provider-signoz
Terraform Provider of SigNoz
https://github.com/signoz/terraform-provider-signoz
iaac signoz terraform
Last synced: 4 months ago
JSON representation
Terraform Provider of SigNoz
- Host: GitHub
- URL: https://github.com/signoz/terraform-provider-signoz
- Owner: SigNoz
- License: mpl-2.0
- Created: 2024-04-30T12:44:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-03T06:19:04.000Z (4 months ago)
- Last Synced: 2025-06-08T00:05:36.188Z (4 months ago)
- Topics: iaac, signoz, terraform
- Language: Go
- Homepage: https://signoz.io
- Size: 164 KB
- Stars: 6
- Watchers: 4
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Terraform SigNoz Provider
The **SigNoz Provider** enables [Terraform](https://terraform.io) to manage [SigNoz](https://signoz.io) resources.
## Requirements
- [Terraform](https://developer.hashicorp.com/terraform/downloads) >= 1.0
- [Go](https://golang.org/doc/install) >= 1.21## Building The Provider
1. Clone the repository
2. Enter the repository directory
3. Build the provider using the Go `install` command:```shell
go install
```## Adding Dependencies
This provider uses [Go modules](https://github.com/golang/go/wiki/Modules).
Please see the Go documentation for the most up to date information about using Go modules.To add a new dependency `github.com/author/dependency` to your Terraform provider:
```shell
go get github.com/author/dependency
go mod tidy
```Then commit the changes to `go.mod` and `go.sum`.
## Documentation
To update the documentation edit the files in templates/ and then run make docs.
The files in docs/ are auto-generated and should not be updated manually.## Developing the Provider
If you wish to work on the provider, you'll first need [Go](http://www.golang.org)
installed on your machine (see [Requirements](#requirements) above).To compile the provider, run `go install`. This will build the provider and put the
provider binary in the `$GOPATH/bin` directory.To generate or update documentation, run `go generate`.