-
-
Notifications
You must be signed in to change notification settings - Fork 250
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 deprecation warnings #160
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
purplepangolin
requested review from
dylanbannon and
brcnblc
and removed request for
a team
April 29, 2022 10:41
/test all |
aknysh
approved these changes
May 23, 2022
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.
thanks @purplepangolin
Shouldn't this have been marked as a breaking change and/or also updated the minimum AWS provider version? This is causing issues with v3 of the AWS provider ( │ Error: Missing required argument
│
│ on .terraform/modules/redis/main.tf line 116, in resource "aws_elasticache_replication_group" "default":
│ 116: resource "aws_elasticache_replication_group" "default" {
│
│ The argument "replication_group_description" is required, but no definition was found.
╵
╷
│ Error: Unsupported argument
│
│ on .terraform/modules/redis/main.tf line 121, in resource "aws_elasticache_replication_group" "default":
│ 121: description = module.this.id
│
│ An argument named "description" is not expected here.
╵
╷
│ Error: Unsupported argument
│
│ on .terraform/modules/redis/main.tf line 123, in resource "aws_elasticache_replication_group" "default":
│ 123: num_cache_clusters = var.cluster_mode_enabled ? null : var.cluster_size
│
│ An argument named "num_cache_clusters" is not expected here.
╵
╷
│ Error: Unsupported argument
│
│ on .terraform/modules/redis/main.tf line 149, in resource "aws_elasticache_replication_group" "default":
│ 149: num_node_groups = var.cluster_mode_enabled ? var.cluster_mode_num_node_groups : null
│
│ An argument named "num_node_groups" is not expected here.
╵
╷
│ Error: Unsupported argument
│
│ on .terraform/modules/redis/main.tf line 150, in resource "aws_elasticache_replication_group" "default":
│ 150: replicas_per_node_group = var.cluster_mode_enabled ? var.cluster_mode_replicas_per_node_group : null
│
│ An argument named "replicas_per_node_group" is not expected here.
|
ismailyenigul
added a commit
to ismailyenigul/terraform-aws-elasticache-redis
that referenced
this pull request
May 26, 2022
Update minimum version of terraform aws provider to support num_cache_clusters cloudposse#160 (comment)
brian-weis-msr
pushed a commit
to Measurabl/terraform-aws-elasticache-redis
that referenced
this pull request
Apr 2, 2024
* Fix deprecation warnings * Auto Format Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
what
cluster_mode
,replication_group_description
,number_cache_clusters
) inaws_elasticache_replication_group
resurce when using provider registry.terraform.io/hashicorp/aws v4.12.0why
Eliminate warnings when running
terraform plan
by moving to latest supported attributes instead.references
Terraform aws provider docs
cluster_mode block
number_cache_clusters
replication_group_description
See my comment on Argument is deprecated [elasticache_replication_group] #155
closes Argument is deprecated [elasticache_replication_group] #155