From fba26b10ee3c81e081651564194cf173497491df Mon Sep 17 00:00:00 2001 From: Daniel Murphy <15730032+DanHatesNumbers@users.noreply.github.com> Date: Fri, 26 Nov 2021 16:57:48 +0000 Subject: [PATCH] Fix example for values-representation in docs for JSON Format internals The `root_module.resources[].sensitive_values` key in the example output was incorrectly named and clashed with the regular `root_module.resources[].values` key. --- website/docs/internals/json-format.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/internals/json-format.html.md b/website/docs/internals/json-format.html.md index cd4e2213a..c5ea13bd1 100644 --- a/website/docs/internals/json-format.html.md +++ b/website/docs/internals/json-format.html.md @@ -272,7 +272,7 @@ The following example illustrates the structure of a ``: // "sensitive_values" is the JSON representation of the sensitivity of // the resource's attribute values. Only attributes which are sensitive // are included in this structure. - "values": { + "sensitive_values": { "id": true, } }