Here is the plan output for an infrastructure change:
```
{{paste your terraform plan / pulumi preview / cdk diff output}}
```
Summarize in plain language:
1. **What's being created** — resource type, name, why it probably exists
2. **What's being modified** — and whether the change is in-place or replacement (replacement = downtime risk for stateful resources)
3. **What's being destroyed** — and whether anything depends on it
4. **Anything dangerous** — DB drops, network rule loosening, IAM grants that widen access, anything touching production data
5. **Anything surprising** — changes I didn't ask for that the plan implies (drift, cascading updates, default-value changes)
End with a one-sentence "apply" / "do not apply" recommendation and the reason. If you're not sure, say so instead of guessing.infrastructurereviewdevops