Skip to content

Instantly share code, notes, and snippets.

@vcaixeta
Created February 2, 2018 11:38
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 vcaixeta/3d123cdc70ea167cc7c1f03d636b1aff to your computer and use it in GitHub Desktop.
Save vcaixeta/3d123cdc70ea167cc7c1f03d636b1aff to your computer and use it in GitHub Desktop.
resource "aws_vpc" "vpc" {
cidr_block = "${var.vpc_cidr}"
enable_dns_support = true
enable_dns_hostnames = true
tags {
Name = "${var.vpc_name}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment