Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ inputs:
default: "terraform"
required: false
binary_version:
description: "The version of OpenTufu(Terraform CLI to install. Should match the version set in your Scalr Workspace. Will be autodetected if left empty and workspace is set."
description: "The version of OpenTofu(Terraform CLI to install. Should match the version set in your Scalr Workspace. Will be autodetected if left empty and workspace is set."
required: false
binary_wrapper:
description: "Whether or not to install a wrapper to wrap subsequent calls of the `tofu/terraform` binary and expose its STDOUT, STDERR, and exit code as outputs named `stdout`, `stderr`, and `exitcode` respectively. Defaults to `true`."
Expand Down
4 changes: 2 additions & 2 deletions src/terraform.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ const { stdout } = require("process");
const zip = await toolcache.downloadTool(download_url);
if (!zip) throw new Error("Failed to download tofu/terraform");

core.info("Decompressing OpenTufu/Terraform binary");
core.info("Decompressing OpenTofu/Terraform binary");
const cli = await toolcache.extractZip(zip);
if (!cli) throw new Error("Failed to decompress tofu/terraform");

core.info("Add toofu/terraform to PATH");
core.info("Add tofu/terraform to PATH");
core.addPath(cli);

if (wrapper) {
Expand Down