Skip to content
This repository was archived by the owner on Jul 29, 2026. It is now read-only.
Merged
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-plugins/terraform/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0-beta.2
1.1.0-beta.3
6 changes: 3 additions & 3 deletions action-plugins/terraform/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func (p *Plugin) ExecuteTask(request plugins.ExecuteTaskRequest) (plugins.Respon
}()

tf_version := ""
workdir := request.Workspace
workdir := ""
init := false
plan := false
plan_output := ""
Expand All @@ -57,7 +57,7 @@ func (p *Plugin) ExecuteTask(request plugins.ExecuteTaskRequest) (plugins.Respon
tf_version = param.Value
}
if param.Key == "workdir" {
workdir = workdir + "/" + param.Value
workdir = param.Value
}
if param.Key == "init" {
init, _ = strconv.ParseBool(param.Value)
Expand Down Expand Up @@ -696,7 +696,7 @@ func (p *Plugin) Info(request plugins.InfoRequest) (models.Plugin, error) {
var plugin = models.Plugin{
Name: "Terraform",
Type: "action",
Version: "1.1.0-beta.2",
Version: "1.1.0-beta.3",
Author: "JustNZ",
Action: models.Action{
Name: "Terraform",
Expand Down
Loading