Created
February 26, 2019 19:22
-
-
Save 100daysofdevops/46f59de82dfe5c117c56321ddc357b85 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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