Skip to content
Snippets Groups Projects
Commit 0ed8c3ae authored by Ryan Randles Jones's avatar Ryan Randles Jones
Browse files

added depends on for ohpc and ood

parent 1a8898d6
No related branches found
No related tags found
No related merge requests found
......@@ -80,6 +80,7 @@ output "keypair_name" {
}
module "ohpc-instance" {
depends_on = "${module.dmz-network.external_subnet_id}"
source = "./ohpc-instance"
floating_ip_ohpc = "${module.floating-ip.ohpc_address}"
external_subnet_id = "${module.dmz-network.external_network_id}"
......@@ -95,6 +96,7 @@ module "ohpc-instance" {
}
module "ood-instance" {
depends_on = "${module.cluster-network.internal_subnet_id}"
source = "./ood-instance"
floating_ip_ood = "${module.floating-ip.ood_address}"
internal_subnet_id = "${module.cluster-network.internal_network_id}"
......
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