Function concat

  • [concat] takes a sequence of [Inputs], stringifies each, and concatenates all values into one final string. Individual inputs can be any sort of [Input] value. i.e. they can be [Promise]s, [Output]s, or just plain JavaScript values. This can be used like so:

         // 'server' and 'loadBalancer' are both resources that expose [Output] properties.
    let val: Output<string> = pulumi.concat("http://", server.hostname, ":", loadBalancer.port);

    Parameters

    • Rest ...params: any[]

    Returns Output<string>

Generated using TypeDoc