๐Ÿก index : github.com/captn3m0/nebula.git

resource "docker_network" "postgres" {
  name     = "postgres"
  driver   = "bridge"
  internal = true

  ipam_config {
    subnet  = "172.20.0.8/27"
    gateway = "172.20.0.9"
  }
}