-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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: Pattern-blue-green-upgrade update example for tfvars
#1799
Conversation
Thanks for the PR @allamand |
@@ -1,5 +1,5 @@ | |||
terraform { | |||
required_version = ">= 1.0" | |||
required_version = ">= 1.4.0" |
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.
are we using any features that require a MSV of 1.4?
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.
no, we have recommendation of version on this ?
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.
the required version should be the minimum supported version - so unless we are using a feature thats only available starting with Terraform 1.4, then we default to 1.0
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.
ok
tfvars
tfvars
tfvars
Description
Motivation and Context
The example tfvars was not using the right source for gitops bridge
How was this change tested?
pre-commit run -a
with this PRAdditional Notes