Initial commit
This commit is contained in:
commit
96b6e1acf2
15
.gitignore
vendored
Normal file
15
.gitignore
vendored
Normal 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
outputs.tf
Normal file
0
outputs.tf
Normal file
8
provider.tf
Normal file
8
provider.tf
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
terraform {
|
||||||
|
required_providers {
|
||||||
|
datadog = {
|
||||||
|
source = "datadog/datadog"
|
||||||
|
version = "3.2.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
3
terraform.tfvars
Normal file
3
terraform.tfvars
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
app_namespace = "plaap"
|
||||||
|
app_name = "blah"
|
||||||
|
image_name = "name/image"
|
||||||
23
variables.tf
Normal file
23
variables.tf
Normal 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"
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user