hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.81k stars 9.15k forks source link

[Enhancement]: Add aws_elasticache_global_parameter_group #32447

Open cdobbyn opened 1 year ago

cdobbyn commented 1 year ago

Description

Today you can create an aws_elasticache_parameter_group to a replication_group but once you connect to a global datastore you lose all control of parameters from terraform.

Please allow configuring a aws_elasticache_global_parameter_group (or aws_elasticache_parameter_group with a optional flag) so that can be assigned to a global datastore.

Thank you.

Affected Resource(s) and/or Data Source(s)

Potential Terraform Configuration

resource "aws_elasticache_global_parameter_group" "global" {
  name        = "cache-params"
  family      = "redis7"

  parameter {
    name = "activerehashing"
    value = "yes"
  }
}

References

Would you like to implement a fix?

None

github-actions[bot] commented 1 year ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue

cdobbyn commented 1 year ago

https://github.com/aws/aws-sdk-go/issues/4905