Conversation
Update CODEOWNERS
…ent/upstream-changes
Pull in upstream changes from cisagov/skeleton-generic
Allow events from apb to rebuild this repository weekly.
…ent/merge_upstream_changes
Fix terraform-docs install, update Go, merge upstream changes
Add Lineage configuration.
terraform validate wants this, but adding any key inside the provider block other than "alias" appears to actually _define_ a provider instead of allowing one to be passed in from the parent module. In this case, a provider is created from the default profile and the specified region, and this is used _instead_ of the aws.images-staging and aws.images-production providers passed in by the parent module.
…/fix-incorrect-provider-error
|
@dav3r and @mcdonnnj, it appears that what makes In short, module |
|
It's now failing to build/lint on the |
We have seen a number of issues related to this hook ever since it was re-enabled. It will need to remain disabled until at least the 0.13 Terraform release, and can only be re-enabled if all issues we have seen have been resolved in how `terraform validate` operates.
…bled. Review noticed that there lacked a determination for what we were doing about the problem with the terraform_validate hook. I described the problems but failed to mention what our path forward would be. This commit rectifies that oversight.
Yep. I was waiting on cisagov/skeleton-generic#44 to trickle down. I got impatient, though, so I went ahead and |
🗣 Description
This pull request removes the dummy
regionarguments inside theproviderblocks. I also pulled in upstream changes. The key commit is 5da4a4c.💭 Motivation and Context
The dummy
regionarguments inside theproviderblocks were causing the code inexamples/basic_usageto fail to apply. This is because providing theregionargument actually results in an explicit provider (using the default profile) being created. As stated in the penultimate paragraph in this section, "a proxy provider block is one that is either completely empty or that contains only thealiasargument."🧪 Testing
The code inside of
examples/basic_usagesuccessfully applies again.🚥 Types of Changes
✅ Checklist