yeah, really weird behaviour. connection strings\keys from all the other resources get extracted just fine
g
gentle-diamond-70147
02/13/2019, 6:11 PM
This is an artifact of how the Pulumi engine works with regards to Resource Outputs.
The main thing to know is that when referencing outputs from resources, Pulumi will take care of "materializing" them when passed into other Pulumi resources. But when trying to print them or do other things with them you need to "force" this.
method is likely what you want to use in this case.
l
little-river-49422
02/13/2019, 6:17 PM
yeah, thats cool, but like I said, I'm not interested in printing it, i'm passing it to a configmap resource in k8s, all the other resources get expanded properly, except redis
i'll try the apply thing
ah, ic, so its behaving like this, because even though I'm using it inside the resource you need to use the apply thing to transform it, because all the others do not need transforming. geesh