forked from fortify/IWA-Java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appspec.yml
37 lines (36 loc) · 843 Bytes
/
appspec.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: 0.0
os: linux
files:
- source: target/iwa.war
destination: /home/ec2-user/javaapp
- source: /scripts/requirements.txt
destination: /home/ec2-user/scripts
hooks:
AfterInstall:
- location: scripts/install_python3
timeout: 300
runas: root
- location: scripts/codestar_remote_access
timeout: 300
runas: root
- location: scripts/install_java
timeout: 300
runas: root
- location: scripts/install_tomcat
timeout: 300
runas: root
- location: scripts/install_httpd
timeout: 300
runas: root
ApplicationStart:
- location: scripts/start_server
timeout: 300
runas: root
ValidateService:
- location: devops-integrations/aws/fortify_dast_scancentral.bash
timeout: 500
runas: root
ApplicationStop:
- location: scripts/stop_server
timeout: 300
runas: root