https://github.com/tf-openstack-modules/terraform-openstack-networks
A terraform module using the openstack provider to create networks
https://github.com/tf-openstack-modules/terraform-openstack-networks
network terraform terraform-module terraform-openstack terraform-openstack-modules
Last synced: 16 days ago
JSON representation
A terraform module using the openstack provider to create networks
- Host: GitHub
- URL: https://github.com/tf-openstack-modules/terraform-openstack-networks
- Owner: tf-openstack-modules
- License: bsd-3-clause
- Created: 2020-11-28T14:58:17.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-07T13:18:33.000Z (over 5 years ago)
- Last Synced: 2026-03-01T17:57:13.791Z (4 months ago)
- Topics: network, terraform, terraform-module, terraform-openstack, terraform-openstack-modules
- Language: HCL
- Homepage: https://registry.terraform.io/modules/tf-openstack-modules/networks/openstack/latest
- Size: 7.81 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Terraform Openstack Network
_This project aims to create a module to deploy networks on openstack provider._


## Where to find module documentations
You can find differents documentations versionned by terraform registry [here](https://registry.terraform.io/modules/tf-openstack-modules/networks/openstack/latest).
## Usage examples
```terraform
module "test_network_simple" {
source = "tf-openstack-modules/networks/openstack"
version = ""
name = "network"
router_id = ""
network = {
name = "example_network"
subnet_name = "example_subnet",
cidr = "10.0.1.0/24"
}
dns_ip = [
"1.1.1.1",
"1.0.0.1"
]
}
```