You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. Not sure if we've run into a bug here or are simply misunderstanding the intended use of the env variable. My expectation was that two clusters with the same name but unique envs would successfully be created as discrete logical entities, though that didn't work out as expected. I can see an easy PR to fix the issue reported by interpolating${var.env} into not only the cache cluster name (as the code is written today) but also in the names of the other module-managed resources, where it is missing. Note that such a "fix" could be a breaking change for folks already using this module when upgrading as some of their existing resources may be destroyed due to name/ID changes. I haven't yet run down the implications of the proposed fix. Thoughts? Thanks!
Tag:
v1.2.0
Steps to Reproduce:
Create a cluster with name=helloworld, env=dev
Create a cluster with name=helloworld, env=prod
Expected Behavior:
Both clusters are created
Observed Behavior:
Creation of env=prod cluster fails with the following error:
Hello. Not sure if we've run into a bug here or are simply misunderstanding the intended use of the
env
variable. My expectation was that two clusters with the samename
but uniqueenv
s would successfully be created as discrete logical entities, though that didn't work out as expected. I can see an easy PR to fix the issue reported by interpolating${var.env}
into not only the cache cluster name (as the code is written today) but also in the names of the other module-managed resources, where it is missing. Note that such a "fix" could be a breaking change for folks already using this module when upgrading as some of their existing resources may be destroyed due to name/ID changes. I haven't yet run down the implications of the proposed fix. Thoughts? Thanks!Tag:
v1.2.0
Steps to Reproduce:
name=helloworld
,env=dev
name=helloworld
,env=prod
Expected Behavior:
Both clusters are created
Observed Behavior:
Creation of
env=prod
cluster fails with the following error:For reference, here's my test code, where the TF workspace (
${terraform.env}
) is being manipulated to drive the module'senv
setting.The text was updated successfully, but these errors were encountered: