Initial commit

This commit is contained in:
Patrick de Ruiter 2021-08-24 10:59:42 +02:00
commit 96b6e1acf2
7 changed files with 49 additions and 0 deletions

15
.gitignore vendored Normal file
View File

@ -0,0 +1,15 @@
# Local .terraform directories
**/.terraform/*
# .tfstate files
*.tfstate
*.tfstate.*
**/.idea
**/*.iml
**/.build-harness
**/build-harness
# Rendered yaml config
**/configmap-auth.yaml

0
data.tf Normal file
View File

0
main.tf Normal file
View File

0
outputs.tf Normal file
View File

8
provider.tf Normal file
View File

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

3
terraform.tfvars Normal file
View File

@ -0,0 +1,3 @@
app_namespace = "plaap"
app_name = "blah"
image_name = "name/image"

23
variables.tf Normal file
View File

@ -0,0 +1,23 @@
#variable "app_namespace" {
# description = "Namespace that the application runs in"
# type = string
# default = "default"
#}
variable "datadog_api_key" {
description = "Datadog Api Key"
type = string
}
variable "datadog_app_key" {
description = "Datadog Application Key"
type = string
}
variable "dd_synthetics" { }
variable "notify" {}
variable "region" {
default = "eu-west-1"
}