Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

json-output: Add output type to JSON format #30945

Merged
merged 1 commit into from Apr 27, 2022

Commits on Apr 27, 2022

  1. json-output: Add output type to JSON format

    Previously the supported JSON plan and state formats included only
    serialized output values, which was a lossy serialization of the
    Terraform type system. This commit adds a type field in the usual cty
    JSON format, which allows reconstitution of the original value.
    
    For example, previously a list(string) and a set(string) containing the
    same values were indistinguishable. This change serializes these as
    follows:
    
    {
      "value": ["a","b","c"],
      "type": ["list","string"]
    }
    
    and:
    
    {
      "value": ["a","b","c"],
      "type": ["set","string"]
    }
    alisdair committed Apr 27, 2022
    Copy the full SHA
    12c8f94 View commit details
    Browse the repository at this point in the history