variable "aws_region" {
  description = "AWS Region"
  type        = string
  default     = "us-east-1"
}
variable "environment" {
  description = "Available values:  dev, qa, prod."
  type        = string
}

variable "permissions_platform_aws_account_ids" {
  description = "Map of environment / PP AWS Account Ids."
  type        = map(string)
  default = {
    "dev" : "103233932089",
    "qa" : "591204808501",
    "uat" : "591204808501",
    "prod" : "031099521156",
  }
}

locals {
  tags = {
    service_name       = "auth0-m2m-config"
    application_family = "permissions-platform"
    environment        = var.environment
    terraformed        = "true"
  }
  permissions_platform_aws_account_id = var.permissions_platform_aws_account_ids[var.environment]
}
