Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 776 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 776 Bytes

Terraform OpenStack Network

Network is a Terraform module useful for creating network, subnet, router resources on OpenStack

Installation

Add the required configurations to your terraform config file and install module using command bellow:

terraform init

Usage

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
}

Contributing

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.

License

MIT