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

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

variable "service_name" {
  description = "The name of the associated application."
  default     = "grps-ingester"
}

variable "application_family" {
  default = "data-platform"
}

variable "team_name" {
  description = "Team name"
  default     = "data-platform"
}

variable "slack_notification_chanel" {
  description = "Slack Notification Chanel"
  default     = "@slack-data-alerts"
}

