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

26 lines
464 B
Terraform
Raw Normal View History

2023-06-23 15:20:40 +02:00
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"
}