orange-tailor-85423
02/08/2019, 11:14 PMcreamy-potato-29402
02/08/2019, 11:19 PMorange-tailor-85423
02/08/2019, 11:31 PMwhite-balloon-205
Output<T>
as a name
parameter on a resource. That won’t work, and you will need to pick a name that is known up front (before the resource ultimately gets created).
You can generally do this by passing a name into the code that is creating these resources, and ensuring that callers pass both the name and any `output`s that are need to initialize it.
If you have code you could share, we could give more precise guidance.orange-tailor-85423
02/08/2019, 11:35 PM${project}:${role}:${sa}
, {
member: pulumi.concat("serviceAccount:", sa),
project,
role
});
});
});
}white-balloon-205
sa
part will tostring to [object Object]
which will not work. Suggest that callers of this pass in an explicit member name, or use the loop index instead of the Output as part of the name.orange-tailor-85423
02/08/2019, 11:42 PM