variable "datadog_firehose_endpoint" {
  type    = string
  default = "https://awsmetrics-intake.datadoghq.com/v1/input"
}

variable "datadog_metric_stream_namespace_list" {
  type    = list(string)
  default = [
    "AWS/ApiGateway",
    "AWS/Backup",
    "AWS/Billing",
    "AWS/DynamoDB",
    "AWS/Inspector",
    "AWS/Route53",
    "AWS/S3",
    "AWS/SES",
    "AWS/SNS",
    "AWS/TransitGateway",
    "AWS/Usage",
  ]
}

variable "environment" {
  default = "dev"
}

variable "aws_region" {
  default     = "us-east-1"
  description = "AWS region"
}

variable "application_family" {
  description = "The application family for the account"
  default     = "devops"
}

variable "cloudwatch_log_group_name" {
  type        = string
  default     = "datadog-metric-stream"
  description = "The name of the CloudWatch log group"
}
