-
Notifications
You must be signed in to change notification settings - Fork 9.6k
/
push.go
36 lines (29 loc) · 1.05 KB
/
push.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package command
import (
"strings"
"github.com/hashicorp/terraform/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)"
}