Files
infra/infra/eip.tf
shockrah 8b1d576bfb !+ Creating infra points for internet access on Crete subnet
With this patch members of the Crete subnet will be able to
properly access the outside world which is required for these
services to function as intended.
2021-11-24 21:14:23 -08:00

10 lines
241 B
HCL

# Beta will basically always be the static web server
# hence why we explicitly setup an EIP for it alone like this
resource "aws_eip" "beta_eip" {
instance = aws_instance.beta.id
vpc = true
tags = {
Name = "Beta Elastic IP"
}
}