-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed mks nat to have a gateway by default; updated vm ports to fix…
… vm creation error; updated vm outputs to not include temp outputs
- Loading branch information
orlov-a
committed
Jan 24, 2024
1 parent
768e5f3
commit 7965072
Showing
4 changed files
with
13 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -160,3 +160,8 @@ variable "gpu_ng_taints" { | |
})) | ||
default = [] | ||
} | ||
|
||
variable "no_gateway" { | ||
type = string | ||
default = false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,11 @@ | ||
output "nat1_net_id" { | ||
value = module.nat1.network_id | ||
output "nat_net_id" { | ||
value = module.nat.network_id | ||
} | ||
|
||
output "nat1_sub_id" { | ||
value = module.nat1.subnet_id | ||
output "nat_sub_id" { | ||
value = module.nat.subnet_id | ||
} | ||
|
||
output "vm1_port_id" { | ||
output "vm_port_id" { | ||
value = openstack_networking_port_v2.port_1.id | ||
} | ||
|
||
output "nat2_net_id" { | ||
value = module.nat2.network_id | ||
} | ||
|
||
output "nat2_sub_id" { | ||
value = module.nat2.subnet_id | ||
} | ||
|
||
output "vm2_port_id" { | ||
value = openstack_networking_port_v2.port_2.id | ||
} | ||
} |