Skip to content

Commit

Permalink
fix vni name
Browse files Browse the repository at this point in the history
  • Loading branch information
fshuva committed Oct 22, 2024
1 parent 8c4b3dc commit 405eb78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ data "ibm_is_security_group" "fgt_security_group" {
name = var.security_group
}

resource "ibm_is_virtual_network_interface" "vni-active" {
resource "ibm_is_virtual_network_interface" "vni-port1" {
name = "${var.cluster_name}-fgt-interface1-${random_string.random_suffix.result}"
allow_ip_spoofing = false
auto_delete = false
Expand All @@ -23,7 +23,7 @@ resource "ibm_is_virtual_network_interface" "vni-active" {

}

resource "ibm_is_virtual_network_interface" "vni-passive" {
resource "ibm_is_virtual_network_interface" "vni-port2" {
name = "${var.cluster_name}-fgt-interface2-${random_string.random_suffix.result}"
allow_ip_spoofing = false
auto_delete = false
Expand Down

0 comments on commit 405eb78

Please sign in to comment.