fix(Terraform): 3n-aws typo
[csit.git] / fdio.infra.terraform / 3n_aws_c5n / deploy / main.tf
index 05c7e32..917dd97 100644 (file)
@@ -127,17 +127,6 @@ resource "aws_subnet" "c" {
   }
 }
 
-resource "aws_subnet" "d" {
-  vpc_id            = aws_vpc.CSITVPC.id
-  cidr_block        = var.vpc_cidr_d
-  availability_zone = var.avail_zone
-  depends_on        = [aws_vpc.CSITVPC, aws_vpc_ipv4_cidr_block_association.d]
-
-  tags = {
-    "Environment" = var.environment_name
-  }
-}
-
 resource "aws_subnet" "d" {
   availability_zone               = var.avail_zone
   assign_ipv6_address_on_creation = false
@@ -154,6 +143,17 @@ resource "aws_subnet" "d" {
   }
 }
 
+resource "aws_internet_gateway" "CSITGW" {
+  depends_on = [
+    aws_vpc.CSITVPC
+  ]
+  vpc_id     = aws_vpc.CSITVPC.id
+
+  tags = {
+    "Environment" = var.environment_name
+  }
+}
+
 # SSH keypair
 # Temporary key for provisioning only
 resource "tls_private_key" "CSITTLS" {