variables.tf 209 B

123456789
  1. variable "postgres_user" {
  2. description = "The Postgres user we want"
  3. default = "psqltest"
  4. }
  5. variable "postgres_password" {
  6. description = "The Postgres password we want"
  7. default = "psqltest"
  8. }