-
Notifications
You must be signed in to change notification settings - Fork 82
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
Errors creating redis groups #1
Comments
@tfhartmann Values should not be so long. Something like this should help for several types of resources: |
@BigAl you shouldn't need to specify the value of the VPC name, it should be extracted from the VPC data source here https://github.com/terraform-community-modules/tf_aws_elasticache_redis/blob/master/main.tf#L1 I accounted for the name length in the replication group id |
Take a look at #3 it should resolve the issue you ran into, if I can get a 👍 I'll merge that in and push a new version tag. In testing, it also surfaced a bug I had in the redis_version regex replace function as well! :) |
@BigAl I just pushed a new version that should resolve you issue, let me know if you are still having problems! |
👍 All looks fine now. |
fixed error: if variable are the output from other module
Upgraded to latest terraform 0.12.6 syntax.
I received the following errors while trying to use this module:
I believe the issue relates to the use of the
vpc.tags["Name"]
inmain.tf
on line 20 and 26. It's not clear that from the Readme that this needs to be set and in my case the Name tag on my VPC contains a space, hence the error. Simply removing-${data.aws_vpc.vpc.tags["Name"]}
fixes the issue for me, perhaps I'm missing the need to add this addition information to these 2 groupsThe text was updated successfully, but these errors were encountered: