square-ability-48831
08/01/2019, 6:39 PMconst apikeys = awsx.apigateway.createAssociatedAPIKeys(...)
..., I'm confused how to convert Output<T> to strings to get concise exports ...continued in thread...exports.apiKey1 = pulumi.all([apikeys.keys[0].apikey.name, apikeys.keys[0].apikey.value]).apply(([name, value]) => `${name}: ${value}`)
white-balloon-205
exports.apiKey1 = pulumi.interpolate`${apikeys.keys[0].apikey.name}: ${apikeys.keys[0].apikey.value}`
square-ability-48831
08/01/2019, 6:41 PM"Calling [toString] on an [Output<T>] is not supported.\n\nTo get the value of an Output<T> as an Output<string> consider either:...
white-balloon-205
square-ability-48831
08/01/2019, 6:43 PM