summaryrefslogtreecommitdiffstats
path: root/eip.tf
diff options
context:
space:
mode:
authorSpike <avlampson+git@gmail.com>2019-04-07 22:03:31 +0100
committerSpike <avlampson+git@gmail.com>2019-04-07 22:03:31 +0100
commitbb81085619769aca861ab5d5bbff86f71c9435d2 (patch)
tree80b45de34d9f0647c10e6d6fae5b408c21c190c5 /eip.tf
downloadfundapp_demo-master.zip
fundapp_demo-master.tar.gz
fundapp_demo-master.tar.bz2
Autoscaling Group, and associated controls and configsHEADmaster
Diffstat (limited to 'eip.tf')
-rw-r--r--eip.tf15
1 files changed, 15 insertions, 0 deletions
diff --git a/eip.tf b/eip.tf
new file mode 100644
index 0000000..3c6110b
--- /dev/null
+++ b/eip.tf
@@ -0,0 +1,15 @@
+# Elastic IPs
+resource "aws_eip" "fundapp_demo_eip_az1" {
+ vpc = true
+ depends_on = ["aws_internet_gateway.fundapp_demo_aws_igw"]
+}
+
+resource "aws_eip" "fundapp_demo_eip_az2" {
+ vpc = true
+ depends_on = ["aws_internet_gateway.fundapp_demo_aws_igw"]
+}
+
+resource "aws_eip" "fundapp_demo_eip_az3" {
+ vpc = true
+ depends_on = ["aws_internet_gateway.fundapp_demo_aws_igw"]
+}