Files
hexagonal/appspec.yml
jinia91 07623323cb cd
2022-04-08 23:58:13 +09:00

30 lines
472 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