variables.tf 280 B

12345678910111213
  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. }
  9. variable "myip" {
  10. description = "IP address of the local machine"
  11. }