summaryrefslogtreecommitdiff
path: root/astroshop-terraform/modules/vpc/variables.tf
diff options
context:
space:
mode:
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