## CloudFormation Question 8 What will the Name tag value resolve to at runtime for the stack named 'prod-stack'? ```yaml AWSTemplateFormatVersion: '2010-09-09' Resources: AppServer: Type: AWS::EC2::Instance Properties: ImageId: ami-0abcdef1234567890 InstanceType: t3.medium Tags: - Key: Name Value: !Sub '${AWS::StackName}-AppServer' ``` | AWS Certified Cloud Practitioner Quiz - LeetQuiz