opentofu/internal/command/push.go
Martin Atkins ffe056bacb Move command/ to internal/command/
This is part of a general effort to move all of Terraform's non-library
package surface under internal in order to reinforce that these are for
internal use within Terraform only.

If you were previously importing packages under this prefix into an
external codebase, you could pin to an earlier release tag as an interim
solution until you've make a plan to achieve the same functionality some
other way.
2021-05-17 14:09:07 -07:00

37 lines
1.1 KiB
Go

package command
import (
"strings"
"github.com/hashicorp/terraform/internal/tfdiags"
)
type PushCommand struct {
Meta
}
func (c *PushCommand) Run(args []string) int {
// This command is no longer supported, but we'll retain it just to
// give the user some next-steps after upgrading.
c.showDiagnostics(tfdiags.Sourceless(
tfdiags.Error,
"Command \"terraform push\" is no longer supported",
"This command was used to push configuration to Terraform Enterprise legacy (v1), which has now reached end-of-life. To push configuration to Terraform Enterprise v2, use its REST API. Contact Terraform Enterprise support for more information.",
))
return 1
}
func (c *PushCommand) Help() string {
helpText := `
Usage: terraform [global options] push [options] [DIR]
This command was for the legacy version of Terraform Enterprise (v1), which
has now reached end-of-life. Therefore this command is no longer supported.
`
return strings.TrimSpace(helpText)
}
func (c *PushCommand) Synopsis() string {
return "Obsolete command for Terraform Enterprise legacy (v1)"
}