When creating a Linux AMI in AWS with CloudFormation, I can view the output of the Cloud Init scripts, for example if I have a UserData section that echoes to stdout:
"UserData": {
"Fn::Base64": {
"Fn::Join": [
"",
[
"#!/bin/bash -xe\n",
"echo hello, stdout\n"
]
]
}
}
Then /var/log/cloud-init-output.log
will contain these lines:
+ echo hello, stdout
hello, stdout
What is the equivalent log file for Windows AMIs? Is it somewhere in http://169.254.169.254/
, or is it a log file somewhere?