nebula/modules/postgres/vars.tf

11 lines
161 B
Terraform
Raw Normal View History

2018-07-28 14:49:20 +00:00
variable "name" {
description = "database/role name"
2021-03-20 07:39:19 +00:00
type = string
2018-07-28 14:49:20 +00:00
}
variable "password" {
description = "role password"
2021-03-20 07:39:19 +00:00
type = string
2018-07-28 14:49:20 +00:00
}
2021-03-20 07:39:19 +00:00