From 912405a8f3f6b831b9abcf6e16a9372160e7ce32 Mon Sep 17 00:00:00 2001 From: Saumit Date: Sun, 28 Sep 2025 02:25:37 +0530 Subject: vpc: Adding vpc module --- astroshop-terraform/modules/vpc/variables.tf | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 astroshop-terraform/modules/vpc/variables.tf (limited to 'astroshop-terraform/modules/vpc/variables.tf') diff --git a/astroshop-terraform/modules/vpc/variables.tf b/astroshop-terraform/modules/vpc/variables.tf new file mode 100644 index 0000000..50fe184 --- /dev/null +++ b/astroshop-terraform/modules/vpc/variables.tf @@ -0,0 +1,24 @@ +variable "vpc_cidr" { + description = "CIDR block for VPC" + type = string +} + +variable "availability_zones" { + description = "Availability zones" + type = list(string) +} + +variable "private_subnet_cidrs" { + description = "CIDR blocks for private subnets" + type = list(string) +} + +variable "public_subnet_cidrs" { + description = "CIDR blocks for public subnets" + type = list(string) +} + +variable "cluster_name" { + description = "Name of the EKS cluster" + type = string +} \ No newline at end of file -- cgit v1.2.3