summaryrefslogtreecommitdiff
path: root/astroshop-terraform/modules/vpc/variables.tf
diff options
context:
space:
mode:
authorSaumit <justsaumit@protonmail.com>2025-09-28 02:25:37 +0530
committerSaumit <justsaumit@protonmail.com>2025-09-28 02:25:37 +0530
commit912405a8f3f6b831b9abcf6e16a9372160e7ce32 (patch)
tree88514db155e36f430be8cc87d12b8d136e156cb2 /astroshop-terraform/modules/vpc/variables.tf
parentd682471acaa88e96c78717b813ffeedb726da831 (diff)
vpc: Adding vpc module
Diffstat (limited to 'astroshop-terraform/modules/vpc/variables.tf')
-rw-r--r--astroshop-terraform/modules/vpc/variables.tf24
1 files changed, 24 insertions, 0 deletions
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