Terraform’s aws_eip elastic ip always changes during plan

Camilo Matajira Avatar

The reason is that I had vpc set to false. When I set vpc to true the problems were solved.

resource "aws_eip" "eip" {
  vpc      = false
}

Tagged in :

Camilo Matajira Avatar