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

variable "application_family" {
  type        = string
  description = "Name of application family"
  default     = "fansifter"
}

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

variable "service_name" {
  type        = string
  description = "The name of the service."
  default     = "automated-emails-sender"
}


variable "snowflake_database" {
  type        = string
  description = "The name of the Snowflake database to create the S3 stage in."
  default     = "PREFERENCE_CENTER"
}

variable "snowflake_schema" {
  type        = string
  description = "The name of the Snowflake schema to create the S3 stage in."
  default     = "PROD"
}

locals {
  iam_role_name       = "${var.environment}-${var.service_name}-snowflake-integration-role"
  bucket_name         = "${var.environment}-automated-emails-fan-events"
  fan_response_s3_dir = "raw"
}
