variable "aws_region" {
  type        = string
  default     = "us-east-1"
  description = "The AWS region to create the repository in"
}

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

variable "application_family" {
  description = "Name of application family"
  default     = "devops"
}

variable "service_name" {
  description = "Custom bucket name"
  default     = "orcd-secrets-manager-secrets-backup"
}

variable "team_name" {
  description = "Name of the team that owns this resource"
  default     = "devops"
}

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