forked from gruntwork-io/terragrunt-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
35 lines (35 loc) · 896 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
name: "Terragrunt Github Action"
description: "Guithub Action for Terragrunt."
author: "[email protected]"
branding:
icon: "award"
color: "green"
inputs:
tg_version:
description: "Terragrunt version to install."
required: true
tf_version:
description: "Terraform version to install."
required: true
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_output_log:
description: "Add output to GitHub Output"
default: "0"
required: false
outputs:
tg_action_output:
description: "Terragrunt execution output"
tg_action_exit_code:
description: "Terragrunt exit code"
runs:
using: "docker"
image: "./Dockerfile"