Network is a Terraform module useful for creating network, subnet, router resources on OpenStack
Add the required configurations to your terraform config file and install module using command bellow:
terraform init
module "network" {
source = "cktf/network/openstack"
name = "mynet"
description = "My Network"
external = "external"
subnets = ["192.168.1.0/24", "192.168.2.0/24"]
tenant_id = data.openstack_identity_project_v3.this.id
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.