Hello folks, I have a pulumi stack where the launc...
# aws
a
Hello folks, I have a pulumi stack where the launch template triggers the Autoscaling group instance refresh updates. When i am changing the ami parameter of the Launch template through Pulumi to trigger the asg instance refresh, it doesn’t detect anything. The asg api for launch template trigger is as
Copy code
instance_refresh=aws.autoscaling.GroupInstanceRefreshArgs(
                strategy="Rolling",
                preferences=aws.autoscaling.GroupInstanceRefreshPreferencesArgs(
                    instance_warmup=120,
                    min_healthy_percentage=50,
                ),
                triggers=["launch_template"],
            ),
Can someone please help and guide?