Skip to content

Commit

Permalink
fix typo in ipv4/6 prefix-list policy objects (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarski0 authored Nov 7, 2024
1 parent 0a68868 commit 5ec4d36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdwan_policy_objects.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ resource "sdwan_policy_object_ipv4_prefix_list" "policy_object_ipv4_prefix_list"
ipv4_address = split("/", e.prefix)[0]
ipv4_prefix_length = split("/", e.prefix)[1]
le = try(e.le, null)
ge = try(e.g1, null)
ge = try(e.ge, null)
}]
}

Expand All @@ -56,7 +56,7 @@ resource "sdwan_policy_object_ipv6_prefix_list" "policy_object_ipv6_prefix_list"
ipv6_address = split("/", e.prefix)[0]
ipv6_prefix_length = split("/", e.prefix)[1]
le = try(e.le, null)
ge = try(e.g1, null)
ge = try(e.ge, null)
}]
}

Expand Down

0 comments on commit 5ec4d36

Please sign in to comment.