-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathvpc.tf
More file actions
28 lines (20 loc) · 717 Bytes
/
vpc.tf
File metadata and controls
28 lines (20 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
resource "aws_vpc" "main" {
# The CIDR block for the VPC
cidr_block = "192.168.0.0/16"
# Make your instances shared on the host
instance_tenancy = "default"
# Required for EKS. Enable/Disable DNS support in the VPC
enable_dns_support = true
# Required for EKS. Enable/Disable DNS hostnames in the VPC
enable_dns_hostnames = true
# Enable/disable ClassicLink for the VPC
enable_classiclink = false
# Enable/disable ClassicLink DNS support for the VPC
enable_classiclink_dns_support = false
# Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length
assign_generated_ipv6_cidr_block = false
# A map of tags to assign to the resource
tags = {
"Name" = "main"
}
}