Response from terraform plan:
Warning: Argument is deprecated
│
│ with aws_eip.lb,
│ on attributes.tf line 16, in resource "aws_eip" "lb":
│ 16: vpc = true
│
│ use domain attribute instead
│
│ (and one more similar warning elsewhere)
AWS code (as at 11Jun2023):
resource "aws_eip" "lb" {
instance = aws_instance.web.id
domain = "vpc"
}