Reputation: 1608
Is there a way to run AWS cloudformation update in dry run mode? Cos I realised that the aws validate does not pick up all the errors and when you run the update new errors are being thrown.
Upvotes: 5
Views: 10093
Reputation: 1039
The closest you could get to this is running mock testing which will require a fair amount of configuration time; it also cannot 100% guarantee you won't encounter any errors.
Moto has an extensive library dedicated to mock running AWS infrastructure and would be worth checking out, with the core endpoints of cloudformation included.
Upvotes: 3