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

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

variable "service_name" {
  description = "Name of service."
  type        = string
  default     = "snowflake-stage"
}

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

locals {
  tags = {
    terraformed        = true
    environment        = var.environment
    application_family = var.application_family
    used_by            = "Snowflake"
  }
}
