I have a Windows instance of aws Elastic Beanstalk. I want to echo a text from the script inside .ebextensions folder and be able to see it in the deployment logs. Here is what I have:
container_commands:
0100_execute_only_in_dev:
command: echo "The_man_in_the_high_castle"
The deployment is successful but when I requested logs for the EC2 instance, there is no text echo'ed.
What is the correct way?