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

Delete ip-and-instances

parent afa8cdb8
No related branches found
No related tags found
No related merge requests found
module "floating-ip-module" {
source = "./floating-ip-module"
}
output "floating_ip_ohpc" {
value = "${module.floating-ip-module.ohpc_address}"
}
output "floating_ip_ood" {
value = "${module.floating-ip-module.ood_address}"
}
module "instance-module" {
source = "./instance-module"
floating-ip-ohpc = "${module.floating-ip-module.ohpc_address}"
floating-ip-ood = "${module.floating-ip-module.ood_address}"
external-subnet-id = "${module.networks-module.external_subnet_id}"
internal-subnet-id = "${module.networks-module.internal_subnet_id}"
}
output "ssh_host" {
value = "${module.instance-module.ssh_host}"
}
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