28 lines
504 B
HCL
Executable File
28 lines
504 B
HCL
Executable File
#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"
|
|
}
|
|
|
|
variable "url" {
|
|
description = "Specifies the URL for datadog to monitor"
|
|
}
|