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

changed "net" to "network"

parent d89f8629
No related branches found
No related tags found
No related merge requests found
......@@ -8,8 +8,8 @@ variable "flavor" {}
# is created in key-pair module and called in root module
variable "key_pair" {type = "string"}
variable "internal_net" {}
variable "external_net" {}
variable "internal_network" {}
variable "external_network" {}
# is created in floating-ip module and called in root module
variable "floating_ip_ood" {type = "string"}
......@@ -30,10 +30,10 @@ resource "openstack_compute_instance_v2" "ood" {
# defines the networks of the instance
network {
name = var.external_net
name = var.external_network
}
network {
name = var.internal_net
name = var.internal_network
}
}
......
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