-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
31 lines (31 loc) · 986 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
name: 'Terraform Orchestration Action'
description: 'This action is used to orchestrate Terraform modules which has been changed.'
inputs:
workingDirectory:
description: 'Working directory to run Terraform in.'
required: false
default: '.'
baseRef:
description: 'Git reference to use as the base'
required: true
headRef:
description: 'Git reference to use as the head'
required: true
excludeDirectories:
description: 'List of directories separated by commas to exclude from the search'
required: false
commonModules:
description: 'List of common modules, if you change some common modules, all components will be updated'
required: false
workspace:
description: 'Workspace to use for Terraform'
required: true
apply:
description: 'Boonlean variable to determine if the action should apply the changes'
required: false
runs:
using: 'node16'
main: 'dist/index.js'
branding:
icon: 'lock'
color: 'gray-dark'