variable "host" {
  type        = string
  description = "The address for the postgresql server connection"
}

variable "username" {
  type        = string
  description = "Username for the server connection."
}

variable "password" {
  type        = string
  description = "Password for the server connection."
}

variable "port" {
  type        = number
  description = "The port for the server connection"
  default     = 5432
}

variable "database" {
  type        = string
  description = "Database to connect to."
  default     = "postgres"
}
