Why does this work? ```cluster_user_name = pulumi....
# getting-started
s
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 )