Amazon VPC Operations: Difference between revisions
Jump to navigation
Jump to search
Line 26: | Line 26: | ||
Type: AWS::EC2::VPC | Type: AWS::EC2::VPC | ||
Properties: | Properties: | ||
CidrBlock: | [[Amazon_VPC_Concepts#Primary_IP_Address_Range_.28CIDR_Block.29|CidrBlock]]: !Ref PrimaryIPAddressRange | ||
EnableDnsSupport: Boolean | EnableDnsSupport: Boolean | ||
EnableDnsHostnames: Boolean | EnableDnsHostnames: Boolean |
Revision as of 22:30, 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: Boolean EnableDnsHostnames: Boolean InstanceTenancy: String Tags: - Resource Tag
Describe VPC
aws ec2 describe-vpcs --vpc-id <vpc-id>