2023-05-02 11:33:06 -04:00
// Copyright IBM Corp. 2014, 2026
2023-08-10 18:43:27 -04:00
// SPDX-License-Identifier: BUSL-1.1
2023-05-02 11:33:06 -04:00
2017-02-23 13:13:28 -05:00
package command
import (
"fmt"
"strings"
2018-11-21 09:35:27 -05:00
"time"
2017-02-23 13:13:28 -05:00
2023-12-20 06:04:10 -05:00
"github.com/hashicorp/cli"
2025-06-27 14:17:43 -04:00
"github.com/hashicorp/terraform/internal/backend"
2021-05-17 15:07:38 -04:00
"github.com/hashicorp/terraform/internal/command/arguments"
"github.com/hashicorp/terraform/internal/command/clistate"
"github.com/hashicorp/terraform/internal/command/views"
2021-10-13 15:21:23 -04:00
"github.com/hashicorp/terraform/internal/states"
2021-05-17 13:11:06 -04:00
"github.com/hashicorp/terraform/internal/tfdiags"
2017-09-25 22:02:12 -04:00
"github.com/posener/complete"
2017-02-23 13:13:28 -05:00
)
2017-05-30 18:06:13 -04:00
type WorkspaceDeleteCommand struct {
2017-02-23 13:13:28 -05:00
Meta
2017-05-30 18:06:13 -04:00
LegacyName bool
2017-02-23 13:13:28 -05:00
}
2017-05-30 18:06:13 -04:00
func ( c * WorkspaceDeleteCommand ) Run ( args [ ] string ) int {
2020-04-01 15:01:08 -04:00
args = c . Meta . process ( args )
2017-05-30 18:06:13 -04:00
envCommandShowWarning ( c . Ui , c . LegacyName )
2018-11-21 09:35:27 -05:00
var force bool
var stateLock bool
var stateLockTimeout time . Duration
cmdFlags := c . Meta . defaultFlagSet ( "workspace delete" )
2017-05-30 18:06:13 -04:00
cmdFlags . BoolVar ( & force , "force" , false , "force removal of a non-empty workspace" )
2018-11-21 09:35:27 -05:00
cmdFlags . BoolVar ( & stateLock , "lock" , true , "lock state" )
cmdFlags . DurationVar ( & stateLockTimeout , "lock-timeout" , 0 , "lock timeout" )
2017-02-23 13:13:28 -05:00
cmdFlags . Usage = func ( ) { c . Ui . Error ( c . Help ( ) ) }
if err := cmdFlags . Parse ( args ) ; err != nil {
2019-08-16 08:31:21 -04:00
c . Ui . Error ( fmt . Sprintf ( "Error parsing command-line flags: %s\n" , err . Error ( ) ) )
2017-02-23 13:13:28 -05:00
return 1
}
2018-11-21 09:35:27 -05:00
2017-02-23 13:13:28 -05:00
args = cmdFlags . Args ( )
2021-02-02 10:35:45 -05:00
if len ( args ) != 1 {
c . Ui . Error ( "Expected a single argument: NAME.\n" )
2017-02-23 13:13:28 -05:00
return cli . RunResultHelp
}
2025-06-26 10:36:29 -04:00
if args [ 0 ] == "" {
// Disallowing empty string identifiers more explicitly, versus "Workspace "" doesn't exist."
c . Ui . Error ( fmt . Sprintf ( "Expected a workspace name as an argument, instead got an empty string: %q\n" , args [ 0 ] ) )
return cli . RunResultHelp
}
2017-02-23 13:13:28 -05:00
2017-02-23 14:14:51 -05:00
configPath , err := ModulePath ( args [ 1 : ] )
if err != nil {
c . Ui . Error ( err . Error ( ) )
return 1
}
2018-03-27 18:31:05 -04:00
var diags tfdiags . Diagnostics
2017-02-23 13:13:28 -05:00
// Load the backend
2025-11-03 12:57:20 -05:00
view := arguments . ViewHuman
b , backendDiags := c . backend ( configPath , view )
2018-03-27 18:31:05 -04:00
diags = diags . Append ( backendDiags )
if backendDiags . HasErrors ( ) {
c . showDiagnostics ( diags )
2017-02-23 13:13:28 -05:00
return 1
}
backend: Validate remote backend Terraform version
When using the enhanced remote backend, a subset of all Terraform
operations are supported. Of these, only plan and apply can be executed
on the remote infrastructure (e.g. Terraform Cloud). Other operations
run locally and use the remote backend for state storage.
This causes problems when the local version of Terraform does not match
the configured version from the remote workspace. If the two versions
are incompatible, an `import` or `state mv` operation can cause the
remote workspace to be unusable until a manual fix is applied.
To prevent this from happening accidentally, this commit introduces a
check that the local Terraform version and the configured remote
workspace Terraform version are compatible. This check is skipped for
commands which do not write state, and can also be disabled by the use
of a new command-line flag, `-ignore-remote-version`.
Terraform version compatibility is defined as:
- For all releases before 0.14.0, local must exactly equal remote, as
two different versions cannot share state;
- 0.14.0 to 1.0.x are compatible, as we will not change the state
version number until at least Terraform 1.1.0;
- Versions after 1.1.0 must have the same major and minor versions, as
we will not change the state version number in a patch release.
If the two versions are incompatible, a diagnostic is displayed,
advising that the error can be suppressed with `-ignore-remote-version`.
When this flag is used, the diagnostic is still displayed, but as a
warning instead of an error.
Commands which will not write state can assert this fact by calling the
helper `meta.ignoreRemoteBackendVersionConflict`, which will disable the
checks. Those which can write state should instead call the helper
`meta.remoteBackendVersionCheck`, which will return diagnostics for
display.
In addition to these explicit paths for managing the version check, we
have an implicit check in the remote backend's state manager
initialization method. Both of the above helpers will disable this
check. This fallback is in place to ensure that future code paths which
access state cannot accidentally skip the remote version check.
2020-11-13 16:43:56 -05:00
// This command will not write state
2021-08-24 15:28:12 -04:00
c . ignoreRemoteVersionConflict ( b )
backend: Validate remote backend Terraform version
When using the enhanced remote backend, a subset of all Terraform
operations are supported. Of these, only plan and apply can be executed
on the remote infrastructure (e.g. Terraform Cloud). Other operations
run locally and use the remote backend for state storage.
This causes problems when the local version of Terraform does not match
the configured version from the remote workspace. If the two versions
are incompatible, an `import` or `state mv` operation can cause the
remote workspace to be unusable until a manual fix is applied.
To prevent this from happening accidentally, this commit introduces a
check that the local Terraform version and the configured remote
workspace Terraform version are compatible. This check is skipped for
commands which do not write state, and can also be disabled by the use
of a new command-line flag, `-ignore-remote-version`.
Terraform version compatibility is defined as:
- For all releases before 0.14.0, local must exactly equal remote, as
two different versions cannot share state;
- 0.14.0 to 1.0.x are compatible, as we will not change the state
version number until at least Terraform 1.1.0;
- Versions after 1.1.0 must have the same major and minor versions, as
we will not change the state version number in a patch release.
If the two versions are incompatible, a diagnostic is displayed,
advising that the error can be suppressed with `-ignore-remote-version`.
When this flag is used, the diagnostic is still displayed, but as a
warning instead of an error.
Commands which will not write state can assert this fact by calling the
helper `meta.ignoreRemoteBackendVersionConflict`, which will disable the
checks. Those which can write state should instead call the helper
`meta.remoteBackendVersionCheck`, which will return diagnostics for
display.
In addition to these explicit paths for managing the version check, we
have an implicit check in the remote backend's state manager
initialization method. Both of the above helpers will disable this
check. This fallback is in place to ensure that future code paths which
access state cannot accidentally skip the remote version check.
2020-11-13 16:43:56 -05:00
2025-08-18 14:03:31 -04:00
workspaces , wDiags := b . Workspaces ( )
diags = diags . Append ( wDiags )
if wDiags . HasErrors ( ) {
c . Ui . Error ( wDiags . Err ( ) . Error ( ) )
2017-02-23 13:13:28 -05:00
return 1
}
2025-08-18 14:03:31 -04:00
c . showDiagnostics ( diags ) // output warnings, if any
2017-02-23 13:13:28 -05:00
2025-06-27 14:17:43 -04:00
// Is the user attempting to delete a workspace that doesn't exist?
2020-06-18 10:03:30 -04:00
workspace := args [ 0 ]
2017-02-23 13:13:28 -05:00
exists := false
2018-11-21 09:35:27 -05:00
for _ , ws := range workspaces {
if workspace == ws {
2017-02-23 13:13:28 -05:00
exists = true
break
}
}
if ! exists {
2018-11-21 09:35:27 -05:00
c . Ui . Error ( fmt . Sprintf ( strings . TrimSpace ( envDoesNotExist ) , workspace ) )
2017-02-23 13:13:28 -05:00
return 1
}
2025-06-27 14:17:43 -04:00
// Is the user attempting to delete the currently selected workspace?
2020-06-16 12:23:15 -04:00
currentWorkspace , err := c . Workspace ( )
if err != nil {
c . Ui . Error ( fmt . Sprintf ( "Error selecting workspace: %s" , err ) )
return 1
}
if workspace == currentWorkspace {
2018-11-21 09:35:27 -05:00
c . Ui . Error ( fmt . Sprintf ( strings . TrimSpace ( envDelCurrent ) , workspace ) )
2017-02-28 13:13:03 -05:00
return 1
2017-02-23 13:13:28 -05:00
}
2025-06-27 14:17:43 -04:00
// Is the user attempting to delete the default workspace?
if workspace == backend . DefaultStateName {
c . Ui . Error ( "Cannot delete the default workspace" )
return 1
}
// Check if the workspace's state is empty or not
2025-09-04 06:14:35 -04:00
stateMgr , sDiags := b . StateMgr ( workspace )
if sDiags . HasErrors ( ) {
c . Ui . Error ( sDiags . Err ( ) . Error ( ) )
2017-02-23 13:13:28 -05:00
return 1
}
2018-02-23 11:28:47 -05:00
var stateLocker clistate . Locker
2018-11-21 09:35:27 -05:00
if stateLock {
2021-02-16 07:19:22 -05:00
stateLocker = clistate . NewLocker ( c . stateLockTimeout , views . NewStateLocker ( arguments . ViewHuman , c . View ) )
if diags := stateLocker . Lock ( stateMgr , "state-replace-provider" ) ; diags . HasErrors ( ) {
c . showDiagnostics ( diags )
2018-02-23 11:28:47 -05:00
return 1
}
} else {
stateLocker = clistate . NewNoopLocker ( )
}
2018-11-21 09:35:27 -05:00
if err := stateMgr . RefreshState ( ) ; err != nil {
2020-02-12 10:34:51 -05:00
// We need to release the lock before exit
2021-02-16 07:19:22 -05:00
stateLocker . Unlock ( )
2017-02-23 13:13:28 -05:00
c . Ui . Error ( err . Error ( ) )
return 1
}
2021-10-13 15:21:23 -04:00
hasResources := stateMgr . State ( ) . HasManagedResourceInstanceObjects ( )
2017-02-23 13:13:28 -05:00
2017-02-24 09:26:14 -05:00
if hasResources && ! force {
2021-10-13 15:21:23 -04:00
// We'll collect a list of what's being managed here as extra context
// for the message.
var buf strings . Builder
2023-10-23 20:07:59 -04:00
for _ , obj := range stateMgr . State ( ) . AllManagedResourceInstanceObjectAddrs ( ) {
2021-10-13 15:21:23 -04:00
if obj . DeposedKey == states . NotDeposed {
2023-10-23 18:55:49 -04:00
fmt . Fprintf ( & buf , "\n - %s" , obj . ResourceInstance . String ( ) )
2021-10-13 15:21:23 -04:00
} else {
2023-10-23 18:55:49 -04:00
fmt . Fprintf ( & buf , "\n - %s (deposed object %s)" , obj . ResourceInstance . String ( ) , obj . DeposedKey )
2021-10-13 15:21:23 -04:00
}
}
2020-02-12 10:34:51 -05:00
// We need to release the lock before exit
2021-02-16 07:19:22 -05:00
stateLocker . Unlock ( )
2021-10-13 15:21:23 -04:00
diags = diags . Append ( tfdiags . Sourceless (
tfdiags . Error ,
"Workspace is not empty" ,
fmt . Sprintf (
"Workspace %q is currently tracking the following resource instances:%s\n\nDeleting this workspace would cause Terraform to lose track of any associated remote objects, which would then require you to delete them manually outside of Terraform. You should destroy these objects with Terraform before deleting the workspace.\n\nIf you want to delete this workspace anyway, and have Terraform forget about these managed objects, use the -force option to disable this safety check." ,
workspace , buf . String ( ) ,
) ,
) )
c . showDiagnostics ( diags )
2017-02-23 13:13:28 -05:00
return 1
}
2018-02-23 11:28:47 -05:00
// We need to release the lock just before deleting the state, in case
// the backend can't remove the resource while holding the lock. This
// is currently true for Windows local files.
//
// TODO: While there is little safety in locking while deleting the
// state, it might be nice to be able to coordinate processes around
// state deletion, i.e. in a CI environment. Adding Delete() as a
// required method of States would allow the removal of the resource to
// be delegated from the Backend to the State itself.
2021-02-16 07:19:22 -05:00
stateLocker . Unlock ( )
2017-02-23 13:13:28 -05:00
2025-08-18 14:03:31 -04:00
dwDiags := b . DeleteWorkspace ( workspace , force )
diags = diags . Append ( dwDiags )
if dwDiags . HasErrors ( ) {
c . Ui . Error ( dwDiags . Err ( ) . Error ( ) )
2017-02-23 13:13:28 -05:00
return 1
}
2025-08-18 14:03:31 -04:00
c . showDiagnostics ( diags ) // output warnings, if any
2017-02-23 13:13:28 -05:00
c . Ui . Output (
c . Colorize ( ) . Color (
2018-11-21 09:35:27 -05:00
fmt . Sprintf ( envDeleted , workspace ) ,
2017-02-23 13:13:28 -05:00
) ,
)
2017-02-24 09:26:14 -05:00
if hasResources {
2017-02-23 13:13:28 -05:00
c . Ui . Output (
c . Colorize ( ) . Color (
2018-11-21 09:35:27 -05:00
fmt . Sprintf ( envWarnNotEmpty , workspace ) ,
2017-02-23 13:13:28 -05:00
) ,
)
}
return 0
}
2017-09-25 22:02:12 -04:00
func ( c * WorkspaceDeleteCommand ) AutocompleteArgs ( ) complete . Predictor {
return completePredictSequence {
c . completePredictWorkspaceName ( ) ,
complete . PredictDirs ( "" ) ,
}
}
func ( c * WorkspaceDeleteCommand ) AutocompleteFlags ( ) complete . Flags {
return complete . Flags {
"-force" : complete . PredictNothing ,
}
}
2017-05-30 18:06:13 -04:00
func ( c * WorkspaceDeleteCommand ) Help ( ) string {
2017-02-23 13:13:28 -05:00
helpText := `
2021-02-22 09:25:56 -05:00
Usage : terraform [ global options ] workspace delete [ OPTIONS ] NAME
2017-02-23 13:13:28 -05:00
2017-05-30 18:06:13 -04:00
Delete a Terraform workspace
2017-02-23 13:13:28 -05:00
Options :
2022-11-25 11:42:22 -05:00
- force Remove a workspace even if it is managing resources .
Terraform can no longer track or manage the workspace ' s
infrastructure .
2018-11-21 09:35:27 -05:00
2021-05-12 12:05:03 -04:00
- lock = false Don ' t hold a state lock during the operation . This is
dangerous if others might concurrently run commands
against the same workspace .
2018-11-21 09:35:27 -05:00
2021-05-12 12:05:03 -04:00
- lock - timeout = 0 s Duration to retry a state lock .
2018-11-21 09:35:27 -05:00
2017-02-23 13:13:28 -05:00
`
return strings . TrimSpace ( helpText )
}
2017-05-30 18:06:13 -04:00
func ( c * WorkspaceDeleteCommand ) Synopsis ( ) string {
return "Delete a workspace"
2017-02-23 13:13:28 -05:00
}