Change Quantum to Neutron in Linux heat template

Change-Id: Ib5cf445097334e40570913078fd3e1b8b62e10d4
This commit is contained in:
Ekaterina Fedorova 2013-11-25 16:20:06 +04:00
parent 02b3e7cb5a
commit e61c85bc71

View File

@ -22,7 +22,7 @@
}
},
"$instancePort": {
"Type": "OS::Quantum::Port",
"Type": "OS::Neutron::Port",
"Properties": {
"network_id": {
"Ref": "network"
@ -76,13 +76,13 @@
}
},
"network": {
"Type": "OS::Quantum::Net",
"Type": "OS::Neutron::Net",
"Properties": {
"name": "$network-{environmentId}"
}
},
"subnet": {
"Type": "OS::Quantum::Subnet",
"Type": "OS::Neutron::Subnet",
"Properties": {
"network_id": {
"Ref": "network"
@ -99,10 +99,10 @@
}
},
"router": {
"Type": "OS::Quantum::Router"
"Type": "OS::Neutron::Router"
},
"router_interface": {
"Type": "OS::Quantum::RouterInterface",
"Type": "OS::Neutron::RouterInterface",
"Properties": {
"router_id": {
"Ref": "router"
@ -113,7 +113,7 @@
}
},
"router_gateway": {
"Type": "OS::Quantum::RouterGateway",
"Type": "OS::Neutron::RouterGateway",
"Properties": {
"router_id": {
"Ref": "router"