You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently define an internal provider alias for the aws provider to force the creation of some resources in us-east-1 region.
This behaviour is generally not recommended by Terraform and can cause trouble for users that work with different AWS account profiles.
e.g. you have a private (default) and work profile (alias), the internal provider would always use the default profile even when you explicitly initialize the aws provider with the alias profile.
Our initial approach here was to reduce configuration effort since the us-east-1 alias must be created and passed by the user into the module but we should follow the official recommendation from Terraform here and move it into userland.
The text was updated successfully, but these errors were encountered:
Follow up from #49.
We currently define an internal provider alias for the aws provider to force the creation of some resources in
us-east-1
region.This behaviour is generally not recommended by Terraform and can cause trouble for users that work with different AWS account profiles.
e.g. you have a private (default) and work profile (alias), the internal provider would always use the default profile even when you explicitly initialize the aws provider with the alias profile.
Our initial approach here was to reduce configuration effort since the
us-east-1
alias must be created and passed by the user into the module but we should follow the official recommendation from Terraform here and move it into userland.The text was updated successfully, but these errors were encountered: