terraform-provider-gitea/vendor/github.com/hashicorp/terraform-json
dependabot[bot] 04160fa7a3
Bump github.com/hashicorp/terraform-plugin-docs from 0.15.0 to 0.16.0
Bumps [github.com/hashicorp/terraform-plugin-docs](https://github.com/hashicorp/terraform-plugin-docs) from 0.15.0 to 0.16.0.
- [Release notes](https://github.com/hashicorp/terraform-plugin-docs/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-docs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hashicorp/terraform-plugin-docs/compare/v0.15.0...v0.16.0)

---
updated-dependencies:
- dependency-name: github.com/hashicorp/terraform-plugin-docs
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-07-10 20:16:39 +00:00
..
.copywrite.hcl Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.26.1 to 2.27.0 2023-07-03 20:21:30 +00:00
.gitignore add vendor 2022-04-03 09:37:16 +05:30
.go-version Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.24.1 to 2.26.0 2023-03-20 20:25:53 +00:00
action.go Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.26.1 to 2.27.0 2023-07-03 20:21:30 +00:00
checks.go Bump github.com/hashicorp/terraform-plugin-docs from 0.15.0 to 0.16.0 2023-07-10 20:16:39 +00:00
CODEOWNERS Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.24.1 to 2.26.0 2023-03-20 20:25:53 +00:00
config.go Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.26.1 to 2.27.0 2023-07-03 20:21:30 +00:00
expression.go Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.26.1 to 2.27.0 2023-07-03 20:21:30 +00:00
LICENSE Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.24.1 to 2.26.0 2023-03-20 20:25:53 +00:00
Makefile add vendor 2022-04-03 09:37:16 +05:30
metadata.go Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.26.1 to 2.27.0 2023-07-03 20:21:30 +00:00
plan.go Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.26.1 to 2.27.0 2023-07-03 20:21:30 +00:00
README.md Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.24.1 to 2.26.0 2023-03-20 20:25:53 +00:00
schemas.go Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.26.1 to 2.27.0 2023-07-03 20:21:30 +00:00
state.go Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.26.1 to 2.27.0 2023-07-03 20:21:30 +00:00
tfjson.go Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.26.1 to 2.27.0 2023-07-03 20:21:30 +00:00
validate.go Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.26.1 to 2.27.0 2023-07-03 20:21:30 +00:00
version.go Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.26.1 to 2.27.0 2023-07-03 20:21:30 +00:00

terraform-json

GoDoc

This repository houses data types designed to help parse the data produced by two Terraform commands:

While containing mostly data types, there are also a few helpers to assist with working with the data.

This repository also serves as de facto documentation for the formats produced by these commands. For more details, see the GoDoc.

Why a Separate Repository?

To reduce dependencies on any of Terraform core's internals, we've made a design decision to make any helpers or libraries that work with the external JSON data external and not a part of the Terraform GitHub repository itself.

While Terraform core will change often and be relatively unstable, this library will see a smaller amount of change. Most of the major changes have already happened leading up to 0.12, so you can expect this library to only see minor incremental changes going forward.

For this reason, terraform show -json and terraform providers schema -json is the recommended format for working with Terraform data externally, and as such, if you require any help working with the data in these formats, or even a reference of how the JSON is formatted, use this repository.