stocky-spoon-28903
05/28/2019, 3:37 PMlittle-river-49422
05/28/2019, 3:38 PMlittle-river-49422
05/28/2019, 3:39 PMstocky-spoon-28903
05/28/2019, 3:39 PMlittle-river-49422
05/28/2019, 3:39 PMstocky-spoon-28903
05/28/2019, 3:39 PMlittle-river-49422
05/28/2019, 3:39 PMstocky-spoon-28903
05/28/2019, 3:39 PMlittle-river-49422
05/28/2019, 3:39 PMstocky-spoon-28903
05/28/2019, 3:39 PMlittle-river-49422
05/28/2019, 3:42 PMstocky-spoon-28903
05/28/2019, 3:46 PMlittle-river-49422
05/28/2019, 3:47 PMlittle-river-49422
05/28/2019, 3:47 PMlittle-river-49422
05/28/2019, 3:47 PMstocky-spoon-28903
05/28/2019, 3:53 PMpulumi up
and know that their runs will be serialized. You don’t actually have to have two users for this to present, however - since there is no way for us to know when a second user is about to appear, the lock is used at all times.
The “this doesn’t prevent” refers to a per-resource lock instead of a per-state lock.little-river-49422
05/28/2019, 4:22 PMlittle-river-49422
05/28/2019, 4:23 PMlittle-river-49422
05/28/2019, 4:27 PMlittle-river-49422
05/28/2019, 4:28 PMstocky-spoon-28903
05/28/2019, 4:32 PMwhite-balloon-205
big-glass-16858
05/31/2019, 2:29 PMregister_outputs()
mandatory in a ComponentResource
to use a variable output in another top level resource ? or can i reference directly the ComponentResource
class property ?big-glass-16858
06/07/2019, 2:08 PMlittle-river-49422
06/07/2019, 2:28 PMlittle-river-49422
06/07/2019, 3:00 PMstraight-napkin-70642
06/11/2019, 1:43 PMfierce-state-11693
06/14/2019, 3:03 PMcount
to create a loop for creating resources. I'm able to get the output of those resources in a list with the following.
output "public_subnet_ids" {
value = ["${aws_subnet.public.*.id}"]
}
I'm trying to replicate this behavior with pulumi but cannot figure out how to get the same output list using export. I'd appreciate any help.stocky-spoon-28903
06/14/2019, 3:06 PMstocky-spoon-28903
06/14/2019, 3:07 PMpulumi.export("public_subnet_ids", [sn.id for sn in self.public_subnets])
for example