variable "aws_profile" {
    description = "AWS profile to deploy to"
}

variable "aws_region" {
    description = "The region we're deploying to"
    default = "eu-central-1"
}

variable "environment" {
    description = "Environment key for namespacing infra"
}

variable "service_name" {
    description = "The name of this service"
    default = "dry-terraform-poc-service"
}

variable "service_name_abbrv" {
    description = "The short version of the name of this service, for char-limited fields"
    default = "dry-tf-poc"
}

variable "base_environment" {
    description = "Which environment to use for shared resources"
}

variable "domain_name" {
    description = "Public Route53 domain name"
}
