resource "aws_nat_gateway" "DC-D-NGW" {
  allocation_id     = "eipalloc-0b526a812afea9c5a"
  connectivity_type = "public"
  subnet_id         = aws_subnet.DC-D-XDMZ-1A.id
  tags              = merge(var.tags, { Name = "DC-D-NGW" })
}
