tf-openstack-modules / terraform-openstack-networks

A terraform module using the openstack provider to create networks

Home Page:https://registry.terraform.io/modules/tf-openstack-modules/networks/openstack/latest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Terraform Openstack Network

This project aims to create a module to deploy networks on openstack provider.

Release GitHub tag (latest by date)

Where to find module documentations

You can find differents documentations versionned by terraform registry here.

Usage examples

module "test_network_simple" {
	source  = "tf-openstack-modules/networks/openstack"
	version = "<version>"
 
	name = "network"
	router_id = "<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"
    ]
}

About

A terraform module using the openstack provider to create networks

https://registry.terraform.io/modules/tf-openstack-modules/networks/openstack/latest

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:HCL 100.0%