-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathaction.yml
36 lines (36 loc) · 1.12 KB
/
action.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
name: "Cloud One Conformity Pipeline Scanner"
description: "Scan CloudFormation files with Cloud One Conformity."
inputs:
cc_apikey:
description: "Cloud One Conformity API Key"
required: true
cc_region:
description: "Region of your Cloud One Conformity console, eg us-west-2."
required: true
maxExtreme:
description: "Maximum Extreme detections accepted."
required: false
maxVeryHigh:
description: "Maximum Very High detections accepted."
required: false
maxHigh:
description: "Maximum High detections accepted."
required: false
maxMedium:
description: "Maximum Medium detections accepted."
required: false
maxLow:
description: "Maximum Low detections accepted."
required: false
templatePath:
description: "Location of the file to be scanned, eg templates/template.yml."
required: true
templatesDirPath:
description: "(Optional) Location of the directory of templates to be scanned, (e.g., templates). This ignores the value of 'templatePath' if supplied."
required: false
branding:
icon: "check"
color: "red"
runs:
using: 'node16'
main: 'scan.js'