Skip to content

Instantly share code, notes, and snippets.

@phivid
Last active January 7, 2020 10:40
Show Gist options
  • Save phivid/0ae284ce854cdcc57ca75823e1e2cbcf to your computer and use it in GitHub Desktop.
Save phivid/0ae284ce854cdcc57ca75823e1e2cbcf to your computer and use it in GitHub Desktop.
terraform_module_vpc
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
// partie omise pour la lisibilité.
tags = {
Terraform = "true"
Environment = "lab"
Name = var.name
}
public_subnet_tags = {
"Tier" = "public"
}
private_subnet_tags = {
"Tier" = "private"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment