This message was deleted.
# general
s
This message was deleted.
s
does this work by chance?
Copy code
template:
  config:
    aws:allowedAccountIds:
      description: aws account
      default:
        - 1234567890
f
No, that gives you the
cannot unmarshal !!seq into string
error I mentioned
Apparently the template config defaults are only supported as strings. The workaround I found only works because the string '[1234567890]' gets parsed as a list once it's in the stack config
s
yeah that certainly doesn't feel good but I see how that would work if you have no choice but to give it a string as input 😕
f
🤷‍♂️
s
yeah lol
if your users are going to be mind blown I have other ideas that are much more work but unless it's a big problem they will probably be able to figure it out
f
it's other developers so I think they'll be fine, they'll just feel slightly uncomfortable lol
s
hahahah yeah
throw in a
# this is a list inside a string. Yes it's weird.
lol
1