From 41052de88bd7ea22af9dd234738b1f2937f8dbb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= Date: Tue, 7 Jun 2022 14:19:18 +0400 Subject: [PATCH] chore: fix a typo in provider init error introduced in #1515 --- pkg/remote/aws/provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/remote/aws/provider.go b/pkg/remote/aws/provider.go index d45b1985..a243edd1 100644 --- a/pkg/remote/aws/provider.go +++ b/pkg/remote/aws/provider.go @@ -94,7 +94,7 @@ func (p *AWSTerraformProvider) CheckCredentialsExist() error { if err == credentials.ErrNoValidProvidersFoundInChain { return errors.New("Could not find a way to authenticate on AWS!\n" + "Please refer to AWS documentation: https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html\n\n" + - "To use a different cloud provider, use --to=\"tf+gcp\" for GCP or --to=\"tf+azure\" for Azure.") + "To use a different cloud provider, use --to=\"gcp+tf\" for GCP or --to=\"azure+tf\" for Azure.") } if err != nil { return err