Question - What happens to an error returned by th...
# golang
b
Question - What happens to an error returned by the function passed to
ApplyT(...)
? E.g.
eksCluster.NodeSecurityGroup.ApplyT(func() (*ec2.SecurityGroupRule, error) { return nil, fmt.Errorf("Test failure")})
. Can I inspect the error and return error from
pulumi.Run
if the inner function fails?