# AWS variables
variable "aws_region" {
  description = "AWS region from which to pull metrics"
  default     = "us-east-1"
}

variable datadog_function_destination_arn {
  description = "Which Lambda function to apply the permission to"
  default     = "arn:aws:lambda:us-east-1:437795906767:function:DatadogLambdaFunction"
}

variable "environment" {
  type    = string
  default = "prod"
}

variable "application_family" {
  description = "The application family of the resource. E.g. data-platform, identity, etc."
  type        = string
  default     = "devops"
}

variable "service_name" {
  description = "The name of the service. E.g. terraform-airflow, terraform-iam, etc."
  type        = string
  default     = "terraform-datadog-test"
}

variable "team_name" {
  description = "The name of the Datadog team responsible for the resource."
  type        = string
  default     = "devops"
}
