Skip to content

Instantly share code, notes, and snippets.

@khushi20218
Created August 10, 2020 12:08
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 khushi20218/a7f12515559073b016007ac86cb97842 to your computer and use it in GitHub Desktop.
Save khushi20218/a7f12515559073b016007ac86cb97842 to your computer and use it in GitHub Desktop.
# vpc
resource "aws_vpc" "tf_vpc" {
cidr_block = "192.168.0.0/16"
enable_dns_support = true
enable_dns_hostnames = true
tags= {
Name = "tf-vpc"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment