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

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

variable "service_name" {
  default = "vector-delivery"
}

variable "application_family" {
  default = "vector"
}

locals {
  tags = {
    environment        = var.environment
    service_name       = var.service_name
    application_family = var.application_family
    terraformed        = true
  }

  pre_existing_policy_names = [
    "KMS-${var.environment}_itunes_trans_accounts-fullaccess",
    "S3-orcd-film-tv-vector-delivery-RW",
    "S3-${var.environment}-asset-storage-RW",
    "S3-transporter-logs-RW",
    "SecretsManager-${var.environment}-direct_delivery-connection_info-read-write-policy",
    "SES-SendOnly",
    "S3-${var.environment}-vector-audit-RW",
  ]
}
