This commit is contained in:
Patrick de Ruiter 2021-10-07 10:19:26 +02:00
parent bc0fbc4d0f
commit 1a24f58bb6
2 changed files with 8 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,9 +1,7 @@
*.tfstate
*.tfstate.backup
.terraform
provider.tf
*.tfvars
**/*.tfvars
provider.tf
.github
.circleci

8
provider.tf Normal file
View File

@ -0,0 +1,8 @@
terraform {
required_providers {
datadog = {
source = "datadog/datadog"
version = "3.2.0"
}
}
}