Adding some docker and terraform to it ... wip
This commit is contained in:
10
network.tf
Normal file
10
network.tf
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user