From 08515edc4377e1e2bdc44175aab51eabdaefcc1e Mon Sep 17 00:00:00 2001 From: Panagiotis Moustafellos Date: Wed, 15 Oct 2014 11:17:56 +0300 Subject: [PATCH 1/2] fixed typo on terraform destroy --- command/apply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/apply.go b/command/apply.go index 7ddc53002..f9c677f7f 100644 --- a/command/apply.go +++ b/command/apply.go @@ -121,7 +121,7 @@ func (c *ApplyCommand) Run(args []string) int { v, err := c.UIInput().Input(&terraform.InputOpts{ Id: "destroy", Query: "Do you really want to destroy?", - Description: "Terraform will delete all your manage infrastructure.\n" + + Description: "Terraform will delete all your Terraform-managed infrastructure.\n" + "There is no undo. Only 'yes' will be accepted to confirm.", }) if err != nil { From 3d51bae4b24ca916591b1a23d43d8a21086d0a6a Mon Sep 17 00:00:00 2001 From: Panagiotis Moustafellos Date: Wed, 15 Oct 2014 18:57:24 +0300 Subject: [PATCH 2/2] switch phrasing --- command/apply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/apply.go b/command/apply.go index f9c677f7f..7a4df3971 100644 --- a/command/apply.go +++ b/command/apply.go @@ -121,7 +121,7 @@ func (c *ApplyCommand) Run(args []string) int { v, err := c.UIInput().Input(&terraform.InputOpts{ Id: "destroy", Query: "Do you really want to destroy?", - Description: "Terraform will delete all your Terraform-managed infrastructure.\n" + + Description: "Terraform will delete all your managed infrastructure.\n" + "There is no undo. Only 'yes' will be accepted to confirm.", }) if err != nil {