All public logs
Combined display of all available logs of Dave-Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 18:38, 1 February 2025 Tlyle talk contribs created page AWS CLI (Created page with "= AWS CLI Commands for Cloud Network Engineers = == 1. VPC Management == === View VPCs === <pre> aws ec2 describe-vpcs </pre> '''Use Case:''' Lists all VPCs in your account. === Create a VPC === <pre> aws ec2 create-vpc --cidr-block 10.0.0.0/16 </pre> '''Use Case:''' Creates a new VPC. === Delete a VPC === <pre> aws ec2 delete-vpc --vpc-id vpc-12345678 </pre> '''Use Case:''' Deletes a VPC. == 2. Subnet Management == === List Subnets === <pre> aws ec2 describe-subne...")