sparse-intern-71089
08/20/2020, 2:16 PMstocky-spoon-28903
08/20/2020, 2:57 PMbrave-dress-99218
08/20/2020, 3:51 PMaws.lb.ListenerRule
in
conditions=[
{
"hostHeader": {
"values": [route53_record.fqdn]
}
}
it works perfectly well.
also I tried to use depends on
with no luck.
also during next runs, when the record is already created, i still get <pulumi.output.Output object at 0x10d1c0780>
instead of the record value.stocky-spoon-28903
08/20/2020, 3:53 PMapply
stocky-spoon-28903
08/20/2020, 3:54 PMrecord.fqdn.apply(lambda x: render_template({'sometihng': x})
brave-dress-99218
08/20/2020, 4:44 PMpulumi.Output.all(route53_record.fqdn).apply(lambda fqdn: fqdn),
and
route53_record.fqdn.apply(lambda fqdn: fqdn),
regarding your option
so something likeĀi'm not sure i fully understand how to use it. i have a list of variables that i use to render the resulting json from the template, but the example, that you provided implies that there is only one variable -record.fqdn.apply(lambda x: render_template({'sometihng': x})
record.fqdn
?
or i misunderstood you ?stocky-spoon-28903
08/20/2020, 5:03 PMstocky-spoon-28903
08/20/2020, 5:03 PM