
This will be the web host reverse proxy (for alpha & beta) !+ More sec groups for port 80 for apt's request fallback Only because Apt blows * Renaming sec-group::basic_web_sec -> sec-group::general_web_req Should be clearer w/ this rename
18 lines
353 B
HCL
18 lines
353 B
HCL
resource "aws_eip" "sigma_eip" {
|
|
instance = aws_instance.sigma.id
|
|
vpc = true
|
|
tags = {
|
|
Name = "Sigma(Web Load Balancer) EIP"
|
|
}
|
|
}
|
|
|
|
# It's important to note that this instance is not going to up all the time
|
|
resource "aws_eip" "gamma_eip" {
|
|
instance = aws_instance.gamma.id
|
|
vpc = true
|
|
tags = {
|
|
Name = "Ansible host Elastic IP"
|
|
}
|
|
}
|
|
|