# ============================================================
# Performance Effective Solutions — Locals
# Reusable local values shared across all resources.
# ============================================================

# Note: locals are typically defined in main.tf or a dedicated
# locals.tf file. This file shows the recommended convention
# for projects with multiple resources.

locals {
  environment = var.environment

  common_tags = {
    Environment = local.environment
    ManagedBy   = "Terraform"
    Owner       = "PES"
    CreatedBy   = "Eric Vasquez"
  }

  name_prefix = "pes-${local.environment}"
}
