Question #1 A CloudOps engineer is examining the following AWS CloudFormation template: ```yaml AWSTemplateFormatVersion: '2010-09-09' Description: 'Creates an EC2 Instance' Resources: EC2Instance: Type: AWS::EC2::Instance Properties: ImageId: ami-79fdTeee InstanceType: m5n.large SubnetId: subnet-1abc3d3fg PrivateDnsName: ip-10-24-34-0.ec2.internal Tags: - Key: Name Value: !Sub "${AWS::StackName} Instance" ``` Why will the stack creation fail? | AWS Certified Cloud Practitioner Quiz - LeetQuiz