9 lines
No EOL
322 B
HCL
9 lines
No EOL
322 B
HCL
module "postgres" {
|
|
source = "../postgres"
|
|
stack_name = var.stack_name
|
|
networks = [module.network]
|
|
placement_constraints = var.placement_constraints
|
|
database = "headscale"
|
|
username = "headscale"
|
|
ports = [{ container = 5432 }]
|
|
} |