This message was deleted.
# golang
s
This message was deleted.
b
No you can't. Under the hood, pulumi's config pkg is using the built in
json
un-marshaling to parse the configuration values, and you can only un-marshal to simple types (e.g, int, string) and not complex ones (e.g. pulumi.Int or pulumi.String)
👍 1
w
thank you!