Skip to content
Snippets Groups Projects
Commit 2322573b authored by Martin Cuchran's avatar Martin Cuchran
Browse files

Json finished

parent 6901b3a1
No related branches found
No related tags found
Loading
......@@ -16,6 +16,31 @@
"properties":{
"name": "PV176-private-network"
}
},
"internal_subnet":{
"type": "OS::Neutron::Subnet",
"properties":{
"network_id": { "Ref": "internal_net" },
"cidr": "10.0.0.0/8",
"dns_nameservers": [ "147.251.4.3", "8.8.8.8" ],
"ip_version": "4",
"enable_dhcp": "false",
"name": "PV176-private-subnet"
}
},
"internal_router":{
"type": "OS::Neutron::Router",
"properties":{
"external_gateway_info": { "network": "public-float-21" },
"name": "PV176-router"
}
},
"internal_interface":{
"type": "OS::Neutron::RouterInterface",
"properties":{
"router_id": { "Ref": "internal_router" },
"subnet": { "Ref": "internal_subnet" }
}
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment