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

variable "environment" {
  description = "Available values: dev, qa, prod."
  type        = string
  default     = "dev"
}

variable "application_family" {
  description = "Application family to which this service belongs."
  type        = string
  default     = "devops"
}

variable "service_name" {
  description = "Name of service."
  type        = string
  default     = "datadog-fargate-v2"
}

variable "vpc_name" {
  description = "VPC name for Fargate service."
  type        = string
  default     = "dev"
}
