From 0ea6874bc1f80437a04a5e0a59caa271c0158625 Mon Sep 17 00:00:00 2001 From: Kyle Davies <98526301+kderck@users.noreply.github.com> Date: Wed, 9 Mar 2022 20:26:10 +0000 Subject: [PATCH] Change aws.dest to aws.dst Documentation is wrong the `configuration_aliases` should be `[ aws.src, aws.dst ]` not `[ aws.src, aws.dest ]`. --- website/docs/language/modules/develop/providers.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/language/modules/develop/providers.mdx b/website/docs/language/modules/develop/providers.mdx index 32864a6b6..8c173e7fa 100644 --- a/website/docs/language/modules/develop/providers.mdx +++ b/website/docs/language/modules/develop/providers.mdx @@ -221,7 +221,7 @@ terraform { aws = { source = "hashicorp/aws" version = ">= 2.7.0" - configuration_aliases = [ aws.src, aws.dest ] + configuration_aliases = [ aws.src, aws.dst ] } } }