26 lines
464 B
Terraform
26 lines
464 B
Terraform
|
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"
|
||
|
}
|