-
Notifications
You must be signed in to change notification settings - Fork 46
/
action.yml
38 lines (36 loc) · 971 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
34
35
36
37
38
name: 'Gruntwork Terragrunt'
description: 'Setup and execute Terragrunt.'
author: 'Gruntwork'
branding:
icon: 'award'
color: 'purple'
inputs:
tg_version:
description: 'Terragrunt version to install.'
required: true
tf_version:
description: 'Terraform version to install.'
tofu_version:
description: 'OpenTofu version to install.'
tg_command:
description: 'Terragrunt command to execute.'
required: true
tg_dir:
description: 'Directory in which Terragrunt will be executed.'
required: true
tg_comment:
description: 'Include execution output as comment'
default: '0'
required: false
tg_add_approve:
description: 'Add -auto-approve to commands which require changes to be applied'
default: '1'
required: false
outputs:
tg_action_output:
description: 'Terragrunt execution output'
tg_action_exit_code:
description: 'Terragrunt exit code'
runs:
using: 'docker'
image: './Dockerfile'