I am trying to streamline the process of creating VPC/EC2 environments without using the GUI. I also want to automate it by telling a script what I want to be created with what properties.
I decided that the best place to start is to create a VPC and create an EC2 instance within it.
I am using
aws ec2 create-vpc --cidr-block 10.0.0.0/16
But I wanted to name it something like myVPC. Is there a way to do things like this? I am very new to this so if you have any documentation regarding this please send it my way.
Thank you!