-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
35 lines (31 loc) · 878 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: "tofuutils/tenv - Setup OpenTofu/Terraform/Terragrunt/Atmos in one action"
description: "Sets up OpenTofu/Terraform/Terragrunt/Atmos CLI in your GitHub Actions workflow."
author: "kvendingoldo"
branding:
icon: "play-circle"
color: "yellow"
inputs:
tool_name:
description: ""
required: true
tool_version:
description: ""
required: false
default: "latest"
github_token:
description: "API token for GitHub to increase the rate limit."
default: ""
required: false
outputs:
stdout:
description: "The STDOUT stream of the call to the `tofu` binary."
value: ""
stderr:
description: "The STDERR stream of the call to the `tofu` binary."
value: "Wrapper was not activated"
exitcode:
description: "The exit code of the call to the `tofu` binary."
value: "126"
runs:
using: "docker"
image: "Dockerfile"