Skip to content
Snippets Groups Projects
Commit 70eeaa26 authored by Martin Čuchran's avatar Martin Čuchran
Browse files

Depends on fix

parent 373c505a
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,7 @@
"PV176-Servers-ports": {
"type": "OS::Heat::ResourceGroup",
"depends_on": ["PV176-Network"],
"description": "Lab servers ports",
"properties":{
"count": { "get_param": "lab_size" },
......@@ -51,6 +52,7 @@
},
"PV176-Servers-public-ports": {
"type": "OS::Heat::ResourceGroup",
"depends_on": ["PV176-Network"],
"description": "Lab servers public ports",
"properties":{
"count": { "get_param": "lab_size" },
......@@ -68,6 +70,7 @@
},
"PV176-Desktops-ports": {
"type": "OS::Heat::ResourceGroup",
"depends_on": ["PV176-Network"],
"description": "Lab desktops ports",
"properties":{
"count": { "get_param": "lab_size_desktop" },
......@@ -84,6 +87,7 @@
},
"PV176-Desktops-public-ports": {
"type": "OS::Heat::ResourceGroup",
"depends_on": ["PV176-Network"],
"description": "Lab desktops public ports",
"properties":{
"count": { "get_param": "lab_size_desktop" },
......@@ -102,7 +106,7 @@
"PV176-Servers":{
"type": "OS::Heat::ResourceGroup",
"description": "Lab servers",
"depends_on": ["PV176-Servers-ports","PV176-Servers-public-ports"],
"depends_on": ["PV176-Servers-ports","PV176-Servers-public-ports","PV176-Network"],
"properties":{
"count": { "get_param": "lab_size" },
"resource_def":{
......
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