stale-iron-26898
06/20/2022, 4:13 PMuser_password = RandomPassword().result
the variable ‘user_password’ I sent to my dynamic resource which only create a query with the ‘user_password’ inside (Eventually is a string ) the problem is that the value is the Object itself <pulumi.output.Output at 0x7ffe81ffe6d0>
is there a way to export the value i get from randomPassword into a string in run time? 😢
Thanks!little-cartoon-10569
06/20/2022, 9:01 PMapply()
method on the output, which takes a function as a parameter, and the password value will be available inside that function (but not at the top level).stale-iron-26898
06/21/2022, 10:50 AMlittle-cartoon-10569
06/21/2022, 7:47 PM