AWS - EC2 Fundamentals
Given this user data script:
What will be the content of /tmp/instance.txt after instance launch?
#!/bin/bash echo "Instance ID: $(curl -s http://169.254.169.254/latest/meta-data/instance-id)" > /tmp/instance.txt
What will be the content of /tmp/instance.txt after instance launch?
