Skip to content

Commit 7ed5bfb

Browse files
committed
Fix useast1 provider
* Use `configuration_aliases` to allow the provider to be configured in the parent and passed through to the module
1 parent df8823c commit 7ed5bfb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

versions.tf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
terraform {
22
required_version = ">= 1.1.7"
33
required_providers {
4-
aws = "~> 4.4"
4+
aws = {
5+
version = "~> 4.4"
6+
configuration_aliases = [aws.useast1]
7+
}
58
}
69
}

0 commit comments

Comments
 (0)