From 3151e300c055ea05c7b343ce6bda1eab818ebf5d Mon Sep 17 00:00:00 2001 From: Pedro Morais <32364401+moraisph@users.noreply.github.com> Date: Fri, 27 Feb 2026 17:55:42 +0000 Subject: [PATCH] feat(terraform): add workspace subcommand to NeedsAuth list Follow-up https://github.com/1Password/shell-plugins/issues/581 This PR adds the `workspace` subcommand to the NeedsAuth list, ensuring it is properly marked as requiring authentication via 1password. --- plugins/terraform/terraform.go | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/terraform/terraform.go b/plugins/terraform/terraform.go index 40c613b3..72b09532 100644 --- a/plugins/terraform/terraform.go +++ b/plugins/terraform/terraform.go @@ -33,6 +33,7 @@ func TerraformCLI() schema.Executable { needsauth.ForCommand("destroy"), needsauth.ForCommand("import"), needsauth.ForCommand("test"), + needsauth.ForCommand("workspace"), ), }, },