In AWS, can a Systems Manager Parameter Store parameter (with the aws:ec2:image
data type) be referenced directly in the AMI field of a Launch Template used by an EC2 Auto Scaling Group, so that the new EC2 instances will automatically start with the most current AMI specified by that parameter? (Or is it necessary to separately configure EventBridge to monitor for parameter update events and trigger a Lambda to update the ASG configuration after each occasion, to achieve this effect?)
The docs state "You can reference Systems Manager parameters in your scripts, commands, SSM documents, and configuration and automation workflows"; but it isn't clear what "configuration" (or "workflows") mean in this context. Can parameter references be used in the settings of arbitrary AWS infrastructure (anywhere in place of text strings or numerical values), and if so does this cause AWS to dynamically update the resource each time the parameter value changes? Or do infrastructure updates still need to be propagated manually (by re-running scripts etc); is the {{ssm:param-name}}
syntax only for use in CloudFormation templates or the AWS CLI?