sparse-intern-71089
12/20/2022, 9:15 AMflaky-arm-38472
12/21/2022, 2:24 AMTags: pulumi.StringMap{
exampleResource.ApplyT(func(tagKey string) string {
return "chained-name-" + tagKey
}).(pulumi.StringOutput): pulumi.String("test"),
}
Ok for tag value:
Tags: pulumi.StringMap{
"Example": exampleResource.ApplyT(func(tagKey string) string {
return "chained-name-" + tagKey
}).(pulumi.StringOutput),
}
Running out of ideas.billowy-army-68599
ApplyT
on the outside of your build, so for example (untested`
Tags: exampleResource.ApplyT( // do the rest here
billowy-army-68599
ApplyT
inside a StringMap
flaky-arm-38472
12/21/2022, 5:42 AM