Files
jinia91_blog/appspec.yml
2022-05-14 23:45:05 +09:00

28 lines
470 B
YAML

version: 0.0
os: linux
files:
- source: /
destination: /home/ec2-user/app/step3/zip/
overwrite: yes
permissions:
- object: /
pattern: "**"
owner: ec2-user
group: ec2-user
hooks:
AfterInstall:
- location: scripts/stop.sh
timeout: 600
runas: root
ApplicationStart:
- location: scripts/start.sh
timeout: 600
runas: root
ValidateService:
- location: scripts/health.sh
timeout: 600
runas: root