From 8f976e5ceb3a229a9602fed93b536635bc661086 Mon Sep 17 00:00:00 2001 From: Brian Fallik Date: Sun, 14 Aug 2016 11:38:00 -0400 Subject: [PATCH] fix small typo (#8175) I'm pretty sure "with" was intended here. --- website/source/upgrade-guides/0-7.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/upgrade-guides/0-7.html.markdown b/website/source/upgrade-guides/0-7.html.markdown index a29ac6621f..91b5b78349 100644 --- a/website/source/upgrade-guides/0-7.html.markdown +++ b/website/source/upgrade-guides/0-7.html.markdown @@ -89,7 +89,7 @@ This allows double quote characters to be expressed properly within strings insi ## Safer `terraform plan` Behavior -Prior to v0.7, the `terraform plan` command had the potential to write updates to the state if changes were detected during the Refresh step (which happens by default during `plan`). Some configurations have metadata that changes which every read, so Refresh would always result in changes to the state, and therefore a write. +Prior to v0.7, the `terraform plan` command had the potential to write updates to the state if changes were detected during the Refresh step (which happens by default during `plan`). Some configurations have metadata that changes with every read, so Refresh would always result in changes to the state, and therefore a write. In collaborative enviroments with shared remote state, this potential side effect of `plan` would cause unnecessary contention over the state, and potentially even interfere with active `apply` operations if they were happening simultaneously elsewhere.