yaml
1files: 2 "/home/ec2-user/setup.sh": 3 mode: "000755" 4 owner: root 5 group: root 6 content: | 7 #!/bin/bash 8 9 #!sudo sh -c "cat /var/app/current/config/php.conf > /etc/nginx/conf.d/elasticbeanstalk/php.conf"--失敗 1番 10 #!sudo sh -c "cat /var/app/current/config/database.aws > /var/app/current/config/database.php"--失敗 2番 11 12 ----------------------------------- 13 #!sudo sh -c "echo 'test' > /home/ec2-user/test5"--成功 14 #!sudo sh -c "echo 'test' > test2"--成功 15 #!sudo sh -c "cat test > /home/ec2-user/test3"--成功 16 #!sudo sh -c "cat /home/ec2-user/test > test4"--成功 17 sudo sh -c "cat test > /etc/nginx/conf.d/elasticbeanstalk/php.conf"--成功 18 sudo sh -c "cat test > /var/app/current/config/database.php--失敗 19 sudo sh -c "cat /var/app/current/config/php.conf > test6" --失敗 20 sudo sh -c "cat /var/app/current/config/database.aws > test7"--失敗 21 ----------------------------------- 22 23 sudo nginx -s reload 24 sudo aws ssm get-parameters --region ap-northeast-1 --name laravel-myapp-env --with-decryption | jq -r .Parameters[].Value > .env 25 sudo cd /var/app/current/ | php artisan key:generate 26 27container_commands: 28 01_deploy: 29 command: /home/ec2-user/setup.sh
こちらのconfigファイルでデプロイ後に行ってほしいコマンドを設定しているのですが、1番と2番が失敗してしまいます。
アプリケーション(/var/app/current)内のファイルの取得に失敗するのですがどのように設定すればいいでしょうか?
あなたの回答
tips
プレビュー