Hey as the title says I’m trying to set a list as an environment variable using flyctl secrets set, e.g.
flyctl secrets set LIST_VAR='["abc", "def"]' -a app
but when I check the value of the setting that I’m using with that variable it’s that exact string rather than a list. This is on a django app. Is there anyway to pass a list with secrets set? thanks!
@containerops thank you - we use django-environ so all I had to do was use env.list(‘LIST_VAR’) after passing the values in as secrets set LIST_VAR=abc,def
@ignoramous thanks for the link, ended up just being oversight on my part!