-
-
Notifications
You must be signed in to change notification settings - Fork 101
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!: Update AWS provider to support v5.0
and increase Terraform MSV to 1.0
#42
feat!: Update AWS provider to support v5.0
and increase Terraform MSV to 1.0
#42
Conversation
pending testing and validation |
2ff9893
to
2bdf65d
Compare
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.
Looks like a good start. Theres also a deprecated argument that needs to be addressed.
ignore_headers_row
is now deprecated. I think this needs to be replaced with ignore_header_rows
Hey @bryantbiggs any changes to have it approved? I'm looking to the fix of "ignore_header_rows". |
2bdf65d
to
b121e86
Compare
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, just minor comments here and there.
|
||
db_name = "example" | ||
db_username = "example" | ||
db_password = "password123!" # do better! |
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.
examples/complete/main.tf
Outdated
|
||
tags = local.tags | ||
} | ||
|
||
module "msk_cluster" { | ||
source = "clowdhaus/msk-kafka-cluster/aws" |
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.
source = "clowdhaus/msk-kafka-cluster/aws" | |
source = "terraform-aws-modules/msk-kafka-cluster/aws" |
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.
updated in 6ef37ea
versions.tf
Outdated
} | ||
time = { | ||
source = "hashicorp/time" | ||
version = ">=0.7.2" | ||
version = ">=0.9" |
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.
version = ">=0.9" | |
version = ">= 0.9" |
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.
updated in 6ef37ea
## [2.0.0](v1.6.1...v2.0.0) (2023-08-23) ### ⚠ BREAKING CHANGES * Update AWS provider to support `v5.0` and increase Terraform MSV to `1.0` (#42) ### Features * Update AWS provider to support `v5.0` and increase Terraform MSV to `1.0` ([#42](#42)) ([6fea0da](6fea0da)) ### Bug Fixes * Fixes small README typos ([#37](#37)) ([f67f77d](f67f77d))
This PR is included in version 2.0.0 🎉 |
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
v5.0
and increase Terraform MSV to1.0
s3_settings
fromaws_dms_endpoint
and useaws_dms_s3_endpoint
instead per AWS provider directionredshift_settings
onaws_dms_endpoint
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