https://github.com/DataDog/terraform-provider-datadog
Terraform Datadog provider
https://github.com/DataDog/terraform-provider-datadog
datadog terraform terraform-provider
Last synced: 17 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 (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-28T09:20:45.000Z (18 days ago)
- Last Synced: 2025-03-28T09:37:02.618Z (18 days ago)
- Topics: datadog, terraform, terraform-provider
- Language: Go
- Homepage: https://www.terraform.io/docs/providers/datadog/
- Size: 83.1 MB
- Stars: 413
- Watchers: 541
- Forks: 393
- Open Issues: 199
-
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

- 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).