interpolate is similar to concat but is designed to be used
as a tagged template expression, e.g.:
// 'server' and 'loadBalancer' are both resources that expose [Output] properties. letval: Output<string> = pulumi.interpolate`http://${server.hostname}:${loadBalancer.port}`
As with concat, the placeholders between ${} can be any
Inputs: promises, outputs, or just plain JavaScript values.
interpolate is similar to concat but is designed to be used as a tagged template expression, e.g.:
As with concat, the placeholders between
${}
can be any Inputs: promises, outputs, or just plain JavaScript values.