better-umbrella-26052
02/03/2023, 7:51 PMaccess_policy = aws.iam.Policy(
name,
path="/",
description="description",
policy=Output.all(config_data, other_role.arn,
).apply(generate_access_policy),
)
Where "config_data" is a non-pulumi object, other_role.arn is the output and generate_access_policy is the function which returns the json string for the policy. However, the documentation I found says that Output.all is used for grouping inputs (and Output.input_from). So, this doesn't seem to be the correct form. Where do I go in the documentation to find help in resolving this need?echoing-dinner-19531
02/03/2023, 8:06 PMbetter-umbrella-26052
02/03/2023, 8:30 PM