init repo

This commit is contained in:
Gregory
2023-04-12 16:23:57 -07:00
commit 97e995b906
12 changed files with 176 additions and 0 deletions

15
modules/vpc/variables.tf Normal file
View File

@@ -0,0 +1,15 @@
variable "network_name" {
type = string
description = "Name of the VPC network to create"
}
variable "subnets_cidr_list" {
type = list(string)
default = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24", "10.0.4.0/24"]
description = "List of CIDR blocks for the subnets to create within the VPC network"
}
variable "region" {
type = string
description = "Region where the VPC subnets will be created"
}