An IDEMPOTENT script can be re-run any number of times and
always converges to the same end state, without errors.
Which is the BEST example of idempotent infrastructure code?
A) "if not exists, create" + "if exists, update" everywhere
B) Always running `mkdir /opt/app` (errors on the second run)
C) Always appending to a config file (grows forever)
D) Always running `rm -rf /var/data`
Sign in to save your code and track progress across devices.