Is there a way to perform the following? ```var in...
# dotnet
c
Is there a way to perform the following?
Copy code
var inputs = new Pulumi.InputList<Pulumi.Aws.Ec2.Subnet>();
Pulumi.Output<string[]> subnetIds = //project inputs
t
Should be doable with an
Apply
This seems to compile
Copy code
Pulumi.Output<ImmutableArray<string>> subnetIds
  = inputs.Apply(ins => Output.All(ins.Select(s => s.Id)));
c
Ah! That's it, thanks @tall-librarian-49374