AWS - VPC Fundamentals
Given this Terraform snippet to create a VPC:
What will be the CIDR block of the created VPC?
resource "aws_vpc" "main" {
cidr_block = "10.0.0.0/16"
enable_dns_support = true
enable_dns_hostnames = true
}What will be the CIDR block of the created VPC?
