From 21750037d5a2ed7a0a20112ee11b029445bbd1d1 Mon Sep 17 00:00:00 2001 From: Chris Arcand Date: Mon, 8 Nov 2021 22:06:41 -0600 Subject: [PATCH] cloud: Help output typos --- internal/cloud/backend.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/cloud/backend.go b/internal/cloud/backend.go index 188996177..45ec969ea 100644 --- a/internal/cloud/backend.go +++ b/internal/cloud/backend.go @@ -1051,7 +1051,7 @@ Please reach out to HashiCorp Support to resolve this issue.` var ( workspaceConfigurationHelp = fmt.Sprintf( `The 'workspaces' block configures how Terraform CLI maps its workspaces for this single -configuration to workspaces within a Terraform Cloud organization. Three strategies are available: +configuration to workspaces within a Terraform Cloud organization. Two strategies are available: [bold]tags[reset] - %s @@ -1067,9 +1067,9 @@ be set, and 'terraform login' used instead; your credentials will then be fetche configuration file or configured credential helper.` schemaDescriptionTags = `A set of tags used to select remote Terraform Cloud workspaces to be used for this single -configuration. New workspaces will automatically be tagged with these tag values. Generally, this +configuration. New workspaces will automatically be tagged with these tag values. Generally, this is the primary and recommended strategy to use. This option conflicts with "name".` - schemaDescriptionName = `The name of a single Terraform Cloud workspace to be used with this configuration When configured -only the specified workspace can be used. This option conflicts with "tags".` + schemaDescriptionName = `The name of a single Terraform Cloud workspace to be used with this configuration. +When configured, only the specified workspace can be used. This option conflicts with "tags".` )