Function concat

  • concat takes a sequence of Inputs, stringifies each one, and concatenates all values into one final string. Individual inputs can be any sort of input value: they can be promises, outputs, or just plain JavaScript values. Use this function 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