This message was deleted.
# aws
s
This message was deleted.
b
Hi Graham, this is unfortunately an issue with CloudFormation. you'll need to get your cloudformaiton stack into a state where it can be updated
g
Thanks, @billowy-army-68599. The stack is now in the ROLLBACK_COMPLETE state. Normally, when dealing directly with CloudFormation (using a self-crafted CF template), it would be possible to update the stack at this point. But seems Pulumi doesn't want to?
b
this appears to be an artifact of this issue in the terraform provider: https://github.com/hashicorp/terraform-provider-aws/issues/5194
g
I see. At the moment, all I can do is destroy the stack completely and re-create it from scratch, whenever this happens. Maybe I'll check out the new aws-native provider, as that doesn't seem to go through CloudFormation.
b
@great-greece-44955 are you using the awsx method of creating an ASG? you can create an ASG without using that resource
g
Yes, I'm creating a awsx.ecs.Cluster and then calling the createAutoScalingGroup method on that.
b
that is an opinionated mechanism to create autoscaling groups via CFN. it was chosen because CFN allowed instance refreshes on asgs
there's nothing stopping you using the aws autpscaling group resource and avoiding cfn altogether: https://www.pulumi.com/registry/packages/aws/api-docs/autoscaling/group/
g
Thanks, I'll definitely try that!