从ebextension脚本中返回字符串

问题描述 投票:0回答:1

我有aws Elastic Beanstalk的Windows实例。我想从.ebextensions文件夹中的脚本中回显文本,并能够在部署日志中看到它。这是我所拥有的:

container_commands:
  0100_execute_only_in_dev:
    command: echo "The_man_in_the_high_castle" 

部署成功,但是当我请求EC2实例的日志时,没有文本回显。

正确的方法是什么?

amazon-web-services amazon-elastic-beanstalk
1个回答
0
投票
files:
  "C:\\Program Files\\Amazon\\ElasticBeanstalk\\config\\taillogs.d\\cfn-init-cmd.conf" :
    content: |
      c:\cfn\log\cfn-init-cmd.log
container_commands:
  0109_cmd:
    command: "echo show this: %My_Env%"

最后,以上内容对我有用。

此答案https://stackoverflow.com/a/37189606/192727很有帮助

© www.soinside.com 2019 - 2024. All rights reserved.