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

variable "environment" {
  description = "The name of the environment"
  type        = string
  default     = "dev"
}

variable "application_family" {
  description = "The name of the application family"
  type        = string
  default     = "data-platform"
}

variable "slack_channel" {
  description = "The name of the slack channel"
  type        = string
  default     = "data-alarm"
}

variable "hook_url" {
  description = "slack hook url"
  type        = string
  default     = "https://hooks.slack.com/services/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"
}

variable "service_name" {
  description = "The name of the service."
  type        = string
  default     = "data-alarm-slack"
}

variable "sns_queue_name" {
  description = "The name of the sns queue"
  type        = string
  default     = "data_alarm"
}

variable "vpc_id" {
  type        = string
  description = "VPC ID where the lambdas will execute"
  default     = "vpc-34dbfd51"
}

variable "vpc_subnet_ids" {
  default     = ["subnet-b649dfef", "subnet-44c19a21"]
  description = "VPC subnet IDs where the lambda will execute"
  type        = list(string)
}
