34 lines
696 B
HCL
34 lines
696 B
HCL
variable "region" {
|
|
type = string
|
|
description = "The AWS region that the resources to be monitored reside in"
|
|
}
|
|
|
|
variable "api_key" {
|
|
type = string
|
|
description = "The api_key that is used to send logs, metrics and traces to the datadog account"
|
|
}
|
|
|
|
variable "app_key" {
|
|
type = string
|
|
description = "The app_key that is used to manipulate the datadog API"
|
|
}
|
|
|
|
variable "datadog_site" {
|
|
type = string
|
|
description = "Datadog site to connect to (EU or US)"
|
|
default = "https://api.datadoghq.eu/"
|
|
}
|
|
|
|
variable "aws_profile" {
|
|
type = string
|
|
description = "Which AWS account is this for"
|
|
}
|
|
|
|
variable "prefix_slug" {
|
|
type = string
|
|
}
|
|
|
|
variable "team" {
|
|
type = string
|
|
}
|