-
-
Notifications
You must be signed in to change notification settings - Fork 686
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
feat: Add recreate_missing_package
parameter
#181
feat: Add recreate_missing_package
parameter
#181
Conversation
2610afe
to
f5487f1
Compare
recreate_missing_package
parameterrecreate_missing_package
parameter
f5487f1
to
47f5030
Compare
ab703f2
to
3a4ea75
Compare
…TE_MISSING_LAMBDA_PACKAGE environment variable
204dd33
to
de88158
Compare
One more for today. Is it ready for the final review? |
Yep, ready for review :) |
Thanks a lot for this fix, too! v2.16.0 has been just released. |
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. |
Description
Add
recreate_missing_package
parameter in addition toTF_RECREATE_MISSING_LAMBDA_PACKAGE
environment variable.Motivation and Context
People can forget defining the
TF_RECREATE_MISSING_LAMBDA_PACKAGE
environment variable tofalse
before runningterraform plan
orterraform apply
, leading to undesired diff.Adding this as a parameter, we can make sure it is always defined when desired.
Breaking Changes
N/A
How Has This Been Tested?
examples/*
projectsWhen the
TF_RECREATE_MISSING_LAMBDA_PACKAGE
environment variable is set totrue
orfalse
, it takes precedence over the newrecreate_missing_package
parameter which defaults totrue
.