Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created February 26, 2019 19:22
Show Gist options
  • Select an option

  • Save 100daysofdevops/46f59de82dfe5c117c56321ddc357b85 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/46f59de82dfe5c117c56321ddc357b85 to your computer and use it in GitHub Desktop.
# VPC Creation
resource "aws_vpc" "main" {
cidr_block = "${var.vpc_cidr}"
enable_dns_hostnames = true
enable_dns_support = true
tags {
Name = "my-test-vpc"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment