Skip to content

Instantly share code, notes, and snippets.

View maartenvanderhoef's full-sized avatar

Maarten van der Hoef maartenvanderhoef

View GitHub Profile
# Maarten van der Hoef
resource "aws_vpc" "mod" {
cidr_block = "${var.cidr}"
enable_dns_hostnames = "${var.enable_dns_hostnames}"
enable_dns_support = "${var.enable_dns_support}"
tags {
Name = "${var.name}"
CreatedBy = "Terraform"