AWS ec2 documentation change
Summary
Added PowerShell V5 example for VPC creation
Security assessment
Documents VPC creation which is a network isolation security feature, but doesn't provide security-specific guidance
Diff
diff --git a/ec2/latest/devguide/example_ec2_CreateVpc_section.md b/ec2/latest/devguide/example_ec2_CreateVpc_section.md index 82de2c706..9c431243f 100644 --- a//ec2/latest/devguide/example_ec2_CreateVpc_section.md +++ b//ec2/latest/devguide/example_ec2_CreateVpc_section.md @@ -261,0 +262,25 @@ PowerShell +**Tools for PowerShell V5** + + +**Example 1: This example creates a VPC with the specified CIDR. Amazon VPC also creates the following for the VPC: a default DHCP options set, a main route table, and a default network ACL.** + + + New-EC2VPC -CidrBlock 10.0.0.0/16 + + +**Output:** + + + CidrBlock : 10.0.0.0/16 + DhcpOptionsId : dopt-1a2b3c4d + InstanceTenancy : default + IsDefault : False + State : pending + Tags : {} + VpcId : vpc-12345678 + + * For API details, see [CreateVpc](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. + + + +