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

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

variable "service_name" {
  default = "ds-moments-pipeline"
}

variable "application_family" {
  default = "business-intelligence"
}

variable "team_name" {
  type        = string
  description = "The name of the team that owns this infrastructure."
  default     = "devops"
}

variable "stage_snowflake_database" {
  default = "INTELLIGENCE"
}

variable "stage_snowflake_schema" {
  default = "DBT_PROD_PROJECT_MOMENTS"
}

variable "stage_snowflake_role" {
  default = "MOMENTS_PIPELINE_ROLE"
}

locals {
  snowflake_integration_role_name = "${var.environment}-${var.application_family}-snowflake-integration-role"
}
