colossal-vr-62639
02/25/2022, 1:50 PMvar inputs = new Pulumi.InputList<Pulumi.Aws.Ec2.Subnet>();
Pulumi.Output<string[]> subnetIds = //project inputs
tall-librarian-49374
02/25/2022, 2:08 PMApply
Pulumi.Output<ImmutableArray<string>> subnetIds
= inputs.Apply(ins => Output.All(ins.Select(s => s.Id)));
colossal-vr-62639
02/25/2022, 2:24 PM