Skip to content

Instantly share code, notes, and snippets.

@nivleshc
Created March 27, 2024 13:32
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 nivleshc/0de1eb6d777aec96e3bd6bdbea93fea3 to your computer and use it in GitHub Desktop.
Save nivleshc/0de1eb6d777aec96e3bd6bdbea93fea3 to your computer and use it in GitHub Desktop.
contents of the main.tf file from the blog-visualise-network-traffic repository
# create the vpc
module "vpc" {
source = "./vpc"
vpc = local.vpc
private_subnet = local.subnets["private"]
public_subnet = local.subnets["public"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment