-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
33 lines (33 loc) · 834 Bytes
/
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
# action.yml
name: 'iam-lint'
description: 'Github Action to lint AWS IAM policy document files with parliament from DUo Labs'
branding:
icon: 'shield'
color: 'green'
inputs:
path:
description: 'Path to folder with IAM policy document files'
required: false
default: '.'
file_suffix:
description: 'IAM policy document file suffix'
required: false
default: 'json'
minimum_severity:
description: "Minimum severity of findigs to display"
required: false
default: ''
config:
description: "Custom config path"
required: false
default: ''
private_auditors:
description: Path to folder with private_auditors used by parliament'
required: false
default: ''
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.path }}
- ${{ inputs.file_suffix }}