clippable/aws/infra/eip.tf
shockrah 9775ae9cb7 + Simple example infrastructure built with Terraform
This should have literally everything you need to
run a single command and get all infra components
live and ready for app deployment.
2021-10-19 19:57:50 -07:00

8 lines
130 B
HCL

resource "aws_eip" "app_eip" {
instance = aws_instance.app_instance.id
vpc = true
tags = {
Name = "Clippable EIP"
}
}