Skip to content

Commit

Permalink
Use global ip for elastic ip
Browse files Browse the repository at this point in the history
Signed-off-by: Ross Fairbanks <[email protected]>
  • Loading branch information
rossf7 committed Feb 28, 2024
1 parent 27e7784 commit 0a847c8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions infrastructure/equinix-metal/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ resource "equinix_metal_project_ssh_key" "ssh_key" {
resource "equinix_metal_reserved_ip_block" "elastic_ip" {
for_each = toset(var.elastic_ips)
project_id = var.equinix_project_id
type = "public_ipv4"
metro = var.device_metro
type = "global_ipv4"
quantity = 1
description = each.value
}
Expand Down

0 comments on commit 0a847c8

Please sign in to comment.