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.
10 lines
241 B
HCL
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"
|
|
}
|
|
}
|