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

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

variable "environment" {
  description = "The environment to configure AWS Config for"
  default     = "dev"
}

variable "region" {
  description = "AWS region to manage AWS Config resources in"
  type        = string
  default     = "eu-central-1"
}
