From 96b6e1acf261d0161e38808acb418bd48406207b Mon Sep 17 00:00:00 2001 From: Patrick de Ruiter Date: Tue, 24 Aug 2021 10:59:42 +0200 Subject: [PATCH] Initial commit --- .gitignore | 15 +++++++++++++++ data.tf | 0 main.tf | 0 outputs.tf | 0 provider.tf | 8 ++++++++ terraform.tfvars | 3 +++ variables.tf | 23 +++++++++++++++++++++++ 7 files changed, 49 insertions(+) create mode 100644 .gitignore create mode 100644 data.tf create mode 100644 main.tf create mode 100644 outputs.tf create mode 100644 provider.tf create mode 100644 terraform.tfvars create mode 100644 variables.tf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..13f63cb --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# Local .terraform directories +**/.terraform/* + +# .tfstate files +*.tfstate +*.tfstate.* + +**/.idea +**/*.iml + +**/.build-harness +**/build-harness + +# Rendered yaml config +**/configmap-auth.yaml diff --git a/data.tf b/data.tf new file mode 100644 index 0000000..e69de29 diff --git a/main.tf b/main.tf new file mode 100644 index 0000000..e69de29 diff --git a/outputs.tf b/outputs.tf new file mode 100644 index 0000000..e69de29 diff --git a/provider.tf b/provider.tf new file mode 100644 index 0000000..93c7b42 --- /dev/null +++ b/provider.tf @@ -0,0 +1,8 @@ +terraform { + required_providers { + datadog = { + source = "datadog/datadog" + version = "3.2.0" + } + } +} diff --git a/terraform.tfvars b/terraform.tfvars new file mode 100644 index 0000000..8be5848 --- /dev/null +++ b/terraform.tfvars @@ -0,0 +1,3 @@ +app_namespace = "plaap" +app_name = "blah" +image_name = "name/image" diff --git a/variables.tf b/variables.tf new file mode 100644 index 0000000..7f948c7 --- /dev/null +++ b/variables.tf @@ -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" +}