Skip to content

Instantly share code, notes, and snippets.

@rumeshbandara
Created January 15, 2023 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rumeshbandara/1507fafe878021ecd38134cd33b3a4e4 to your computer and use it in GitHub Desktop.
Save rumeshbandara/1507fafe878021ecd38134cd33b3a4e4 to your computer and use it in GitHub Desktop.
Terraform Module
module "network" {
source = "./modules/network"
vpc_cidr = "10.0.0.0/16"
public_subnet_cidrs = ["10.0.1.0/24", "10.0.2.0/24"]
private_subnet_cidrs = ["10.0.3.0/24", "10.0.4.0/24"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment