-
-
Notifications
You must be signed in to change notification settings - Fork 81
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: Reduce required versions for Terraform and AWS provider #1
fix: Reduce required versions for Terraform and AWS provider #1
Conversation
@bryantbiggs I'm wondering that instead of downgrading the other versions, if we need to update the terraform version in this repo: https://github.com/terraform-aws-modules/terraform-aws-kms/blob/master/versions.tf#L2 |
no. because I added the KMS module to the EKS module terraform-aws-modules/terraform-aws-eks#2121 - that is what is forcing the overall EKS module to require Terraform v1.0+ There isn't anything in this module that requires Terraform v1.0+ or AWS v4.0+, those are just the "defaults" I start with on modules these days. But since this module is embedded in other modules, we have to ensure it meets the minimum. Therefore, reducing its required versions here, and the bumping the version used on the EKS module - that will put the EKS module back on par with the versions it uses today. We don't want to bump those because that would incur a major release due to breaking changes (more restrictions) |
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.
I like this PR because, as you say, it is a small resource module which is used in a bigger/EKS one.
ah, we didn't add this repo under |
### [1.0.1](v1.0.0...v1.0.1) (2022-06-28) ### Bug Fixes * Reduce required versions for Terraform and AWS provider ([#1](#1)) ([f80bc66](f80bc66))
This PR is included in version 1.0.1 🎉 |
@bryantbiggs I have just fixed permissions for KMS and global accelerator module you imported a few weeks ago. |
awesome, thank you! |
Oh sorry, I thought the PR was in the terraform-aws-eks repo 😅 |
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
Motivation and Context
Breaking Changes
How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull request