26 lines
464 B
HCL
26 lines
464 B
HCL
variable "pg_host" {
|
|
type = string
|
|
description = "postgresql host"
|
|
}
|
|
|
|
variable "pg_port" {
|
|
type = string
|
|
description = "postgresql port"
|
|
}
|
|
|
|
variable "pg_username" {
|
|
type = string
|
|
description = "postgresql pipeline username"
|
|
}
|
|
|
|
variable "pg_password" {
|
|
type = string
|
|
description = "postgresql pipeline password"
|
|
sensitive = true
|
|
}
|
|
|
|
variable "pg_db" {
|
|
type = string
|
|
description = "postgresql pipeline db"
|
|
}
|