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

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

variable "bucket_name" {
  default = "orcd-podcast-analytics"
}

variable "service_name" {
  default = "orcd-podcast-analytics"
}

variable "application_family" {
  default = "podcast"
}

variable "team_name" {
  default = "podcast"
}

locals {
  all_accounts = module.aws_accounts_map.all_accounts
}
