https://github.com/netdata/terraform-provider-netdata
Netdata Cloud provider for Terraform
https://github.com/netdata/terraform-provider-netdata
Last synced: 2 months ago
JSON representation
Netdata Cloud provider for Terraform
- Host: GitHub
- URL: https://github.com/netdata/terraform-provider-netdata
- Owner: netdata
- License: apache-2.0
- Created: 2024-01-16T14:38:48.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-21T09:26:34.000Z (almost 2 years ago)
- Last Synced: 2024-05-21T12:50:07.102Z (almost 2 years ago)
- Language: Go
- Size: 68.4 KB
- Stars: 2
- Watchers: 12
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Terraform Provider for Netdata Cloud
This is the [Terraform](https://www.terraform.io/) provider for the [Netdata Cloud](https://www.netdata.cloud/).
This provider allows you to install and manage Netdata Cloud resources using Terraform.
## Contents
- [Terraform Provider for Netdata Cloud](#terraform-provider-for-netdata-cloud)
- [Contents](#contents)
- [Requirements](#requirements)
- [Getting Started](#getting-started)
## Requirements
* [Terraform](https://www.terraform.io/downloads.html) v1.1.0 or later
* [Go](https://golang.org/doc/install) v1.20 or later (to build the provider plugin)
## Getting Started
* from terraform registry
* from source code
* setup your [CLI configuration](https://developer.hashicorp.com/terraform/cli/config/config-file#development-overrides-for-provider-developers)
```console
$ cat ~/.terraformrc
provider_installation {
dev_overrides {
"netdata/netdata" = ""
}
direct {}
}
```
* build the provider
```console
$ make local-build
```