dayrize-usecase/terraform/modules/postgresql/variables.tf

43 lines
798 B
Terraform
Raw Normal View History

2023-06-23 15:20:40 +02:00
variable "host" {
type = string
description = "postgresql host"
}
variable "port" {
type = number
description = "postgresql post"
default = 5432
}
variable "password" {
type = string
description = "postgresql admin password"
sensitive = true
}
variable "username" {
type = string
description = "postgresql admin username"
}
variable "pipeline_username" {
type = string
description = "postgresql pipeline username"
}
variable "pipeline_password" {
type = string
description = "postgresql pipeline password"
sensitive = true
}
variable "pipeline_db" {
type = string
description = "postgresql pipeline db"
}
variable "pipeline_schema" {
type = string
description = "postgresql pipeline db"
}