
This should have literally everything you need to run a single command and get all infra components live and ready for app deployment.
8 lines
130 B
HCL
8 lines
130 B
HCL
resource "aws_eip" "app_eip" {
|
|
instance = aws_instance.app_instance.id
|
|
vpc = true
|
|
tags = {
|
|
Name = "Clippable EIP"
|
|
}
|
|
}
|