infra/infra/eip.tf
shockrah 92a450927d - Removing tons of complexity and removing cost overall
! Down to just 2 public servers for now because why tf now servers
2021-12-03 21:25:51 -08:00

18 lines
242 B
HCL

resource "aws_eip" "alpha_eip" {
instance = aws_instance.alpha.id
vpc = true
tags = {
Name = "Alpha EIP"
}
}
resource "aws_eip" "beta_eip" {
vpc = true
instance = aws_instance.beta.id
tags = {
Name = "Beta EIP"
}
}