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

variable account_id {
    description = "Account Id for AWS account."
}

variable vpc_security_group_ids {
    type        = "list"
    description = "Security group IDs for the VPC where the lambdas will execute"
}

variable vpc_subnet_ids {
    type        = "list"
    description = "VPC subnet IDs where the lambdas will execute"
}

variable artist_store_identifier_lambda_memory_size {
    description = "Memory size for the image encoding lambda function"
}

variable AR_MYSQL_HOST {
    description = "Host for art_relations."
}

variable AR_MYSQL_DATABASE {
    description = "Name for art_relations."
}

variable LOGGER_DSN {
    description = "DSN for logging for artist-store-identifier lambda"
}
