24 lines
425 B
HCL
24 lines
425 B
HCL
#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"
|
|
}
|