-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Revert removal of templates provider #883
Conversation
…-aws-modules#863)" This reverts commit 4a8c790.
…ider (terraform-aws-modules#854)" This part reverts commit b183b97. :sob:
Ping? I'm still stuck pinning both this version and the Terraform AWS provider version because this regression is included in the same release as #875 which I need sooner than later. Trying to avoid forking this module just to be able to get #875 because I'm feeling the pain right now (needing some fixes in more recent AWS providers in unrelated areas). It'll be a LONG time before 0.13.0 final is out (it's unacceptable to force us to use a beta version) and just waiting months for the fix is not acceptable. If #875 were in a separate version, I would've pinned on that, but since these 2 are tied together, I can't. |
@dpiddockcmp @mbarrien I'm going to test this. Sorry for the delay. A week off without internet. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks @dpiddockcmp, you can merge it when you're ready.
Broke use case of passing in custom template content. Reverts most of the following PRs: - terraform-aws-modules#865 - terraform-aws-modules#863 - terraform-aws-modules#854
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
PR o'clock
Description
Revert removing the templates provider. It broke some workflows due to previously being able to pass in the raw contents of a template file for processing.
Unfortunately the Terraform built in
templatefile()
function requires use with a file that exists before running the plan. So we're stuck with usingtemplate_file
data source and all the obnoxious random updates it causes for now.Fixes #882
Checklist