Question 453:
You have a launch template where a subnet is specified in its network interface. Now you need to use AWS CLI (aws autoscaling create-auto-scaling-group) to create an Auto Scaling group with the launch template. However, the ASG should be launched in another subnet that is different from the one specified in the launch template. How would you create the ASG with the AWS CLI command?
Answer options:
A.Modify the subnet in the launch template and create the ASG using the latest version of the launch template. B.Change the subnet in the launch template. In AWS CLI (aws autoscaling create-auto-scaling-group), specify the subnet through the --launch-template option. C.Specify the subnet through the --vpc-zone-identifier option in AWS CLI (aws autoscaling create-auto-scaling-group). The subnet in the launch template is ignored. D.Create another launch template with the new subnet in its network interface. In AWS CLI (aws autoscaling create-auto-scaling-group), specify the same subnet through the --vpc-zone-identifier option.