43 lines
798 B
Terraform
43 lines
798 B
Terraform
|
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"
|
||
|
}
|