无效的 YAML ebextensions
Invalid YAML ebextensions
我正在尝试将应用程序版本部署到 elastic beanstalk,但我的配置文件格式不正确。
有很多转义引号,所以我认为这是不正确的,但我不确定如何解决它。
这是导致问题的行;
command: "sudo bash -c 'echo \"<img src=\'http://www.foo.com/img/custom_500.png\' alt=\'500\' style=\'left:50%;top:50%;position:fixed;margin-top:-235px;margin-left:-200px\'/>\"' > custom_50x.html"
尝试不使用开闭引号,像这样:
command: sudo bash -c 'echo \"<img src=\'http://www.foo.com/img/custom_500.png\' alt=\'500\' style=\'left:50%;top:50%;position:fixed;margin-top:-235px;margin-left:-200px\'/>\"' > custom_50x.html
快速确定是否有问题的有用工具是在线使用此工具YAML Parser。
我正在尝试将应用程序版本部署到 elastic beanstalk,但我的配置文件格式不正确。
有很多转义引号,所以我认为这是不正确的,但我不确定如何解决它。
这是导致问题的行;
command: "sudo bash -c 'echo \"<img src=\'http://www.foo.com/img/custom_500.png\' alt=\'500\' style=\'left:50%;top:50%;position:fixed;margin-top:-235px;margin-left:-200px\'/>\"' > custom_50x.html"
尝试不使用开闭引号,像这样:
command: sudo bash -c 'echo \"<img src=\'http://www.foo.com/img/custom_500.png\' alt=\'500\' style=\'left:50%;top:50%;position:fixed;margin-top:-235px;margin-left:-200px\'/>\"' > custom_50x.html
快速确定是否有问题的有用工具是在线使用此工具YAML Parser。