Merge pull request #25238 from HadrienPatte/fix-json-output-format-docs

Fix JSON output format documentation
This commit is contained in:
Pam Selle 2020-07-01 15:08:02 -04:00 committed by GitHub
commit 9cf5a18532
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -66,9 +66,9 @@ For ease of consumption by callers, the plan representation includes a partial r
// being applied to, using the state representation described above.
"prior_state": <state-representation>,
// "config" is a representation of the configuration being applied to the
// "configuration" is a representation of the configuration being applied to the
// prior state, using the configuration representation described above.
"config": <config-representation>,
"configuration": <configuration-representation>,
// "planned_values" is a description of what is known so far of the outcome in
// the standard value representation, with any as-yet-unknown values omitted.
@ -206,7 +206,7 @@ The following example illustrates the structure of a `<values-representation>`:
// resource, whose structure depends on the resource type schema. Any
// unknown values are omitted or set to null, making them
// indistinguishable from absent values; callers which need to distinguish
// unknown from unset must use the plan-specific or config-specific
// unknown from unset must use the plan-specific or configuration-specific
// structures described in later sections.
"values": {
"id": "i-abc123",
@ -379,7 +379,7 @@ Because the configuration models are produced at a stage prior to expression eva
// "module" is a representation of the configuration of the child module
// itself, using the same structure as the "root_module" object,
// recursively describing the full module tree.
"module": <module-config-representation>,
"module": <module-configuration-representation>,
}
}
}