variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the environment in"
}

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

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

variable "service_name" {
  description = "Custom bucket name"
  default     = "orcd-github-repo-backup"
}

variable "notification_endpoints" {
  description = "DataDog notification endpoints for Lambda functions."
  type        = string
  default     = "@slack-devops"
}

variable "github_url" {
  default = "https://api.github.com/orgs/theorchard"
}

variable "github_organization" {
  default = "theorchard"
}

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