variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to provision resources"
}

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

variable "service_name" {
  default = "kollectivenr"
}

variable "domain_name" {
  description = "Name of domain"
  default     = "kollectivenr.com"
}
