-
-
Notifications
You must be signed in to change notification settings - Fork 56
Description
Is your request related to a new offering from AWS?
Is this functionality available in the AWS provider for Terraform?
Yes ✅: The ability to name the global_replication_group_id_suffix custom argument is supported in the AWS provider for Terraform.
Is your request related to a problem? Please describe.
Currently, when creating a global datastore with this module, the global datastore name is always generated to match the replication group name. This makes it impossible to assign a custom name for the global datastore that differs from the replication group name.
For example, with the current setup:
my-global-datastore-east-1:
- my-global-datastore-us-east-1
- my-global-datastore-us-west-1It is not possible to rename the global datastore separately from the replication group. The replication group name is directly used as the suffix for global_replication_group_id_suffix.
Describe the solution you'd like.
I would like the ability to set a custom value for the global_replication_group_id_suffix argument, so that the name of the global datastore is independent of the replication group name.
For example:
global-datastore:
- my-global-datastore-us-east-1
- my-global-datastore-us-west-1Here, global-datastore would be the global datastore name, while the replication group names remain separate.
Describe alternatives you've considered.
Currently, there does not appear to be a way to achieve this functionality with the current version of the module. If such a feature is already implemented but undocumented, guidance on enabling it would suffice as an alternative.
Additional context
This feature would provide more flexibility for managing global datastores, especially for organizations that require naming conventions or separation between global datastore names and replication group names. This change would also improve clarity and manageability of resources in AWS environments with multiple global datastores.