Skip to content

Commit

Permalink
fmt fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
orlov-a committed Jan 24, 2024
1 parent 7965072 commit 0fb5c6e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion modules/network/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resource "openstack_networking_network_v2" "network_1" {
name = var.network_name
name = var.network_name
}

resource "openstack_networking_subnet_v2" "subnet_1" {
Expand Down
10 changes: 5 additions & 5 deletions modules/vm/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ module "nat" {
module "network_1" {
source = "../network"

subnet_cidr = var.local_network_1_subnet_cidr
network_name = var.local_network_1_name
subnet_cidr = var.local_network_1_subnet_cidr
network_name = var.local_network_1_name
}

module "network_2" {
source = "../network"

subnet_cidr = var.local_network_2_subnet_cidr
network_name = var.local_network_2_name
subnet_cidr = var.local_network_2_subnet_cidr
network_name = var.local_network_2_name
}

resource "openstack_networking_port_v2" "port_1" {
Expand Down Expand Up @@ -108,5 +108,5 @@ resource "openstack_compute_instance_v2" "instance_1" {

resource "openstack_compute_interface_attach_v2" "port_3_attach" {
instance_id = openstack_compute_instance_v2.instance_1.id
port_id = openstack_networking_port_v2.port_3.id
port_id = openstack_networking_port_v2.port_3.id
}

0 comments on commit 0fb5c6e

Please sign in to comment.