bored-baker-95734
11/12/2022, 5:56 AMtalos_control_plane_asg = aws.autoscaling.Group(
f"{project}-{stack}-talos-control-plane-asg",
name=f"{project}-{stack}-talos-control-plane-asg",
capacity_rebalance=True,
desired_capacity=3,
max_size=3,
min_size=1,
vpc_zone_identifiers=private_subnet_ids,
launch_configuration=control_plane_launch_configuration.name,
wait_for_capacity_timeout="300s",
opts=pulumi.ResourceOptions(depends_on=[control_plane_launch_configuration]),
health_check_grace_period=300,
tags=[aws.autoscaling.GroupTagArgs(
key="Name",
propagate_at_launch=True,
value="control-plane"
)]
)
That wait_for_capacity_timeuot="300s"
doesn’t help either . It just shows created(17s)
but ideally it should wait until all the instances in the ASG are ready ?No matter how you like to participate in developer communities, Pulumi wants to meet you there. If you want to meet other Pulumi users to share use-cases and best practices, contribute code or documentation, see us at an event, or just tell a story about something cool you did with Pulumi, you are part of our community.
Powered by