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
returns the following error when template.create_stack() is called:
try:
return items[index]
except IndexError:
> raise IndexError(
"Fn::Select - List size is smaller than the Index given."
) from None
E IndexError: Fn::Select - List size is smaller than the Index given.
Notice that a slightly different template succeeds the creation:
I think this might be similar to what I have just commented on in #414 (comment) . You should be able to use the meta data change from #399 (which is not in a released version yet) to set for tests what you expect Outputs.DummyOutput to be like
Thank you for the workaround, David. Unfortunately, changing the input template is not an option for us. I proposed a different approach here to unblock this type of scenarios. Let me know what you think about it.
Hello,
this project is great, but I'm facing a blocker, which I need help for.
I'm using cloud-radar pointing to this commit 648bc29 (it contains a fix I needed).
The following template:
returns the following error when
template.create_stack()
is called:Notice that a slightly different template succeeds the creation:
so I guess the problem is around nesting !Select
May you please support this use case?
Thank you,
Giacomo
The text was updated successfully, but these errors were encountered: