https://pulumi.com logo
s

silly-scientist-20604

07/20/2022, 10:36 PM
Why does this work?
Copy code
cluster_user_name = pulumi.Output.all(mdba_cluster_name).apply( lambda x: x )
pulumi.export( "cluster_user_name", cluster_user_name )
But this:
Copy code
cluster_user_name = pulumi.Output.all(mdba_cluster_name).apply( lambda x: str( x + "foo" ) )
pulumi.export( "cluster_user_name", cluster_user_name )
3 Views