244 lines
7.3 KiB
Go
244 lines
7.3 KiB
Go
package remote
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"fmt"
|
|
"log"
|
|
"strings"
|
|
|
|
tfe "github.com/hashicorp/go-tfe"
|
|
"github.com/hashicorp/terraform/backend"
|
|
"github.com/hashicorp/terraform/terraform"
|
|
)
|
|
|
|
func (b *Remote) opApply(stopCtx, cancelCtx context.Context, op *backend.Operation) (*tfe.Run, error) {
|
|
log.Printf("[INFO] backend/remote: starting Apply operation")
|
|
|
|
// Retrieve the workspace used to run this operation in.
|
|
w, err := b.client.Workspaces.Read(stopCtx, b.organization, op.Workspace)
|
|
if err != nil {
|
|
return nil, generalError("error retrieving workspace", err)
|
|
}
|
|
|
|
if !w.Permissions.CanUpdate {
|
|
return nil, fmt.Errorf(strings.TrimSpace(applyErrNoUpdateRights))
|
|
}
|
|
|
|
if w.VCSRepo != nil {
|
|
return nil, fmt.Errorf(strings.TrimSpace(applyErrVCSNotSupported))
|
|
}
|
|
|
|
if op.Parallelism != defaultParallelism {
|
|
return nil, fmt.Errorf(strings.TrimSpace(applyErrParallelismNotSupported))
|
|
}
|
|
|
|
if op.Plan != nil {
|
|
return nil, fmt.Errorf(strings.TrimSpace(applyErrPlanNotSupported))
|
|
}
|
|
|
|
if !op.PlanRefresh {
|
|
return nil, fmt.Errorf(strings.TrimSpace(applyErrNoRefreshNotSupported))
|
|
}
|
|
|
|
if op.Targets != nil {
|
|
return nil, fmt.Errorf(strings.TrimSpace(applyErrTargetsNotSupported))
|
|
}
|
|
|
|
if op.Variables != nil {
|
|
return nil, fmt.Errorf(strings.TrimSpace(
|
|
fmt.Sprintf(applyErrVariablesNotSupported, b.hostname, b.organization, op.Workspace)))
|
|
}
|
|
|
|
if (op.Module == nil || op.Module.Config().Dir == "") && !op.Destroy {
|
|
return nil, fmt.Errorf(strings.TrimSpace(applyErrNoConfig))
|
|
}
|
|
|
|
// Run the plan phase.
|
|
r, err := b.plan(stopCtx, cancelCtx, op, w)
|
|
if err != nil {
|
|
return r, err
|
|
}
|
|
|
|
// This check is also performed in the plan method to determine if
|
|
// the policies should be checked, but we need to check the values
|
|
// here again to determine if we are done and should return.
|
|
if !r.HasChanges || r.Status == tfe.RunErrored {
|
|
return r, nil
|
|
}
|
|
|
|
// Retrieve the run to get its current status.
|
|
r, err = b.client.Runs.Read(stopCtx, r.ID)
|
|
if err != nil {
|
|
return r, generalError("error retrieving run", err)
|
|
}
|
|
|
|
// Return if the run cannot be confirmed.
|
|
if !w.AutoApply && !r.Actions.IsConfirmable {
|
|
return r, nil
|
|
}
|
|
|
|
// Since we already checked the permissions before creating the run
|
|
// this should never happen. But it doesn't hurt to keep this in as
|
|
// a safeguard for any unexpected situations.
|
|
if !w.AutoApply && !r.Permissions.CanApply {
|
|
// Make sure we discard the run if possible.
|
|
if r.Actions.IsDiscardable {
|
|
err = b.client.Runs.Discard(stopCtx, r.ID, tfe.RunDiscardOptions{})
|
|
if err != nil {
|
|
if op.Destroy {
|
|
return r, generalError("error disarding destroy", err)
|
|
}
|
|
return r, generalError("error disarding apply", err)
|
|
}
|
|
}
|
|
return r, fmt.Errorf(strings.TrimSpace(
|
|
fmt.Sprintf(applyErrNoApplyRights, b.hostname, b.organization, op.Workspace)))
|
|
}
|
|
|
|
mustConfirm := (op.UIIn != nil && op.UIOut != nil) &&
|
|
((op.Destroy && (!op.DestroyForce && !op.AutoApprove)) || (!op.Destroy && !op.AutoApprove))
|
|
|
|
if !w.AutoApply {
|
|
if mustConfirm {
|
|
opts := &terraform.InputOpts{Id: "approve"}
|
|
|
|
if op.Destroy {
|
|
opts.Query = "\nDo you really want to destroy all resources in workspace \"" + op.Workspace + "\"?"
|
|
opts.Description = "Terraform will destroy all your managed infrastructure, as shown above.\n" +
|
|
"There is no undo. Only 'yes' will be accepted to confirm."
|
|
} else {
|
|
opts.Query = "\nDo you want to perform these actions in workspace \"" + op.Workspace + "\"?"
|
|
opts.Description = "Terraform will perform the actions described above.\n" +
|
|
"Only 'yes' will be accepted to approve."
|
|
}
|
|
|
|
if err = b.confirm(stopCtx, op, opts, r, "yes"); err != nil {
|
|
return r, err
|
|
}
|
|
}
|
|
|
|
err = b.client.Runs.Apply(stopCtx, r.ID, tfe.RunApplyOptions{})
|
|
if err != nil {
|
|
return r, generalError("error approving the apply command", err)
|
|
}
|
|
}
|
|
|
|
// If we don't need to ask for confirmation, insert a blank
|
|
// line to separate the ouputs.
|
|
if w.AutoApply || !mustConfirm {
|
|
if b.CLI != nil {
|
|
b.CLI.Output("")
|
|
}
|
|
}
|
|
|
|
r, err = b.waitForRun(stopCtx, cancelCtx, op, "apply", r, w)
|
|
if err != nil {
|
|
return r, err
|
|
}
|
|
|
|
logs, err := b.client.Applies.Logs(stopCtx, r.Apply.ID)
|
|
if err != nil {
|
|
return r, generalError("error retrieving logs", err)
|
|
}
|
|
scanner := bufio.NewScanner(logs)
|
|
|
|
skip := 0
|
|
for scanner.Scan() {
|
|
// Skip the first 3 lines to prevent duplicate output.
|
|
if skip < 3 {
|
|
skip++
|
|
continue
|
|
}
|
|
if b.CLI != nil {
|
|
b.CLI.Output(b.Colorize().Color(scanner.Text()))
|
|
}
|
|
}
|
|
if err := scanner.Err(); err != nil {
|
|
return r, generalError("error reading logs", err)
|
|
}
|
|
|
|
return r, nil
|
|
}
|
|
|
|
const applyErrNoUpdateRights = `
|
|
Insufficient rights to apply changes!
|
|
|
|
[reset][yellow]The provided credentials have insufficient rights to apply changes. In order
|
|
to apply changes at least write permissions on the workspace are required.[reset]
|
|
`
|
|
|
|
const applyErrVCSNotSupported = `
|
|
Apply not allowed for workspaces with a VCS connection.
|
|
|
|
A workspace that is connected to a VCS requires the VCS-driven workflow
|
|
to ensure that the VCS remains the single source of truth.
|
|
`
|
|
|
|
const applyErrParallelismNotSupported = `
|
|
Custom parallelism values are currently not supported!
|
|
|
|
The "remote" backend does not support setting a custom parallelism
|
|
value at this time.
|
|
`
|
|
|
|
const applyErrPlanNotSupported = `
|
|
Applying a saved plan is currently not supported!
|
|
|
|
The "remote" backend currently requires configuration to be present and
|
|
does not accept an existing saved plan as an argument at this time.
|
|
`
|
|
|
|
const applyErrNoRefreshNotSupported = `
|
|
Applying without refresh is currently not supported!
|
|
|
|
Currently the "remote" backend will always do an in-memory refresh of
|
|
the Terraform state prior to generating the plan.
|
|
`
|
|
|
|
const applyErrTargetsNotSupported = `
|
|
Resource targeting is currently not supported!
|
|
|
|
The "remote" backend does not support resource targeting at this time.
|
|
`
|
|
|
|
const applyErrVariablesNotSupported = `
|
|
Run variables are currently not supported!
|
|
|
|
The "remote" backend does not support setting run variables at this time.
|
|
Currently the only to way to pass variables to the remote backend is by
|
|
creating a '*.auto.tfvars' variables file. This file will automatically
|
|
be loaded by the "remote" backend when the workspace is configured to use
|
|
Terraform v0.10.0 or later.
|
|
|
|
Additionally you can also set variables on the workspace in the web UI:
|
|
https://%s/app/%s/%s/variables
|
|
`
|
|
|
|
const applyErrNoConfig = `
|
|
No configuration files found!
|
|
|
|
Apply requires configuration to be present. Applying without a configuration
|
|
would mark everything for destruction, which is normally not what is desired.
|
|
If you would like to destroy everything, please run 'terraform destroy' which
|
|
does not require any configuration files.
|
|
`
|
|
|
|
const applyErrNoApplyRights = `
|
|
Insufficient rights to approve the pending changes!
|
|
|
|
[reset][yellow]There are pending changes, but the provided credentials have insufficient rights
|
|
to approve them. The run will be discarded to prevent it from blocking the queue
|
|
waiting for external approval. To queue a run that can be approved by someone
|
|
else, please use the 'Queue Plan' button in the web UI:
|
|
https://%s/app/%s/%s/runs[reset]
|
|
`
|
|
|
|
const applyDefaultHeader = `
|
|
[reset][yellow]Running apply in the remote backend. Output will stream here. Pressing Ctrl-C
|
|
will cancel the remote apply if its still pending. If the apply started it
|
|
will stop streaming the logs, but will not stop the apply running remotely.
|
|
To view this run in a browser, visit:
|
|
https://%s/app/%s/%s/runs/%s[reset]
|
|
`
|