variable "team_name" {
  type    = string
  default = "devops"
}

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     = "networking"
}

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

variable "service_name" {
  description = "Custom bucket name"
  default     = "route53-backup"
}

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