Amazon VPC Operations: Difference between revisions
Jump to navigation
Jump to search
Line 29: | Line 29: | ||
[[Amazon_VPC_Concepts#DNS|EnableDnsSupport]]: true | [[Amazon_VPC_Concepts#DNS|EnableDnsSupport]]: true | ||
[[Amazon_VPC_Concepts#DNS_Hostname_Generation|EnableDnsHostnames]]: false | [[Amazon_VPC_Concepts#DNS_Hostname_Generation|EnableDnsHostnames]]: false | ||
InstanceTenancy: | [[Amazon_VPC_Concepts#Tenancy|InstanceTenancy]]: "default" | ||
Tags: | Tags: | ||
- Resource Tag | - Resource Tag |
Revision as of 22:43, 9 April 2019
Internal
Overview
Create a VPC
Create a VPC with Amazon Console
VPC Console -> Your VPCs -> Create VPC:
Name tag: the name of the VPC
IPv4 CIDR block: 10.7.0.0/16
IPv6 CIDR block: No IPv6 CIDR Block
Tenancy: default
Create a VPC with CloudFormation
Resources: VPC: Type: AWS::EC2::VPC Properties: CidrBlock: !Ref PrimaryIPAddressRange EnableDnsSupport: true EnableDnsHostnames: false InstanceTenancy: "default" Tags: - Resource Tag
Describe VPC
aws ec2 describe-vpcs --vpc-id <vpc-id>