Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DataDog/terraform-provider-datadog
Terraform Datadog provider
https://github.com/DataDog/terraform-provider-datadog
datadog terraform terraform-provider
Last synced: 7 days ago
JSON representation
Terraform Datadog provider
- Host: GitHub
- URL: https://github.com/DataDog/terraform-provider-datadog
- Owner: DataDog
- License: mpl-2.0
- Created: 2017-06-05T20:53:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-04-12T17:18:53.000Z (7 months ago)
- Last Synced: 2024-04-13T21:47:25.038Z (7 months ago)
- Topics: datadog, terraform, terraform-provider
- Language: Go
- Homepage: https://www.terraform.io/docs/providers/datadog/
- Size: 55.5 MB
- Stars: 380
- Watchers: 478
- Forks: 365
- Open Issues: 154
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Support: .github/SUPPORT.md
Awesome Lists containing this project
- awesome-tf - terraform-provider-datadog - Provider for Datadog. (Providers / Vendor supported providers)
README
# Terraform Provider
![Gitter](https://img.shields.io/gitter/room/DataDog/hashicorp-terraform)
- Website: https://www.terraform.io
- Mailing list: [Google Groups](http://groups.google.com/group/terraform-tool)## Requirements
- [Terraform](https://www.terraform.io/downloads.html) 0.12.x
## Building The Provider
Clone repository to: `$GOPATH/src/github.com/DataDog/terraform-provider-datadog`
```sh
$ mkdir -p $GOPATH/src/github.com/DataDog; cd $GOPATH/src/github.com/DataDog
$ git clone [email protected]:DataDog/terraform-provider-datadog
```Enter the provider directory and build the provider
```sh
$ cd $GOPATH/src/github.com/DataDog/terraform-provider-datadog
$ make build
```**Note**: For contributions created from forks, the repository should still be cloned under the `$GOPATH/src/github.com/DataDog/terraform-provider-datadog` directory to allow the provided `make` commands to properly run, build, and test this project.
## Using the provider
If you're building the provider, follow the instructions to [install it as a plugin.](./DEVELOPMENT.md) After placing it into your plugins directory, run `terraform init` to initialize it.
Further [usage documentation is available on the Terraform website](https://www.terraform.io/docs/providers/datadog/index.html).