Which of the following is the correct syntax to allow inbound SSH (port 22) traffic in a Security Group using AWS CLI?
Aaws ec2 create-nacl-rule --group-id sg-123abc --protocol tcp --port 22 --cidr 0.0.0.0/0
Baws ec2 add-security-group-rule --group-id sg-123abc --protocol tcp --port 22 --cidr 0.0.0.0/0
Caws ec2 authorize-security-group-ingress --group-id sg-123abc --protocol tcp --port 22 --cidr 0.0.0.0/0
Daws ec2 set-security-group-rule --group-id sg-123abc --protocol tcp --port 22 --cidr 0.0.0.0/0