Adding some docker and terraform to it ... wip

This commit is contained in:
Joe Tretter
2022-09-29 13:39:46 -05:00
parent e359485d94
commit b50c7e9ddc
15 changed files with 428 additions and 182 deletions

10
network.tf Normal file
View File

@@ -0,0 +1,10 @@
resource "aws_vpc" "test-env" {
cidr_block = "10.0.0.0/16"
enable_dns_hostnames = true
enable_dns_support = true
}
resource "aws_eip" "ip-test-env" {
instance = "${aws_instance.app_server.id}"
vpc = true
}