├── .copywrite.hcl ├── .gitattributes ├── .github ├── CODEOWNERS ├── dependabot.yml ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── .go-version ├── LICENSE ├── META.d ├── _summary.yml └── data.yml ├── README.md ├── backend ├── backend.go └── cloud.go ├── earlydecoder ├── backend.go ├── data_source.go ├── decoder.go ├── decoder_test.go ├── ephemeral_resource.go ├── load_module.go ├── provider_requirements.go ├── resource.go ├── schema.go ├── search │ ├── decoder.go │ ├── decoder_test.go │ ├── load_search.go │ └── schema.go ├── stacks │ ├── decoder.go │ ├── decoder_test.go │ ├── load_stack.go │ ├── provider_requirements.go │ └── schema.go └── tests │ ├── decoder.go │ ├── decoder_test.go │ ├── load_tests.go │ └── schema.go ├── go.mod ├── go.sum ├── internal ├── addr │ └── addr.go ├── detect │ ├── detect.go │ ├── detect_bitbucket.go │ ├── detect_bitbucket_test.go │ ├── detect_gcs.go │ ├── detect_gcs_test.go │ ├── detect_git.go │ ├── detect_git_test.go │ ├── detect_github.go │ ├── detect_github_test.go │ ├── detect_s3.go │ ├── detect_s3_test.go │ ├── detect_ssh.go │ ├── detect_test.go │ ├── get.go │ ├── source.go │ └── source_test.go ├── funcs │ ├── 0.12 │ │ ├── base_functions.go │ │ └── functions.go │ ├── 0.13 │ │ └── functions.go │ ├── 0.14 │ │ └── functions.go │ ├── 0.15 │ │ └── functions.go │ ├── 1.3 │ │ └── functions.go │ └── generated │ │ ├── 1.10.0.go │ │ ├── 1.4.0.go │ │ ├── 1.5.0.go │ │ ├── 1.8.0.go │ │ ├── 1.9.0.go │ │ ├── README.md │ │ ├── doc.go │ │ ├── functions.go │ │ └── gen │ │ └── gen.go ├── references │ ├── 0.12 │ │ └── references.go │ └── 1.10 │ │ └── references.go ├── schema │ ├── 0.12 │ │ ├── connection_block.go │ │ ├── data_block.go │ │ ├── locals_block.go │ │ ├── module_block.go │ │ ├── output_block.go │ │ ├── provider_block.go │ │ ├── provisioner_block.go │ │ ├── provisioners.go │ │ ├── resource_block.go │ │ ├── root.go │ │ ├── terraform_block.go │ │ └── variable_block.go │ ├── 0.13 │ │ ├── module_block.go │ │ ├── provider_block.go │ │ ├── provisioners.go │ │ ├── root.go │ │ └── terraform_block.go │ ├── 0.14 │ │ ├── provisioners.go │ │ ├── root.go │ │ ├── terraform.go │ │ └── variable_block.go │ ├── 0.15 │ │ ├── connection_block.go │ │ ├── provisioners.go │ │ ├── root.go │ │ └── terraform.go │ ├── 1.1 │ │ ├── moved.go │ │ ├── root.go │ │ ├── terraform.go │ │ └── variable_block.go │ ├── 1.10 │ │ ├── ephemeral_block.go │ │ └── root.go │ ├── 1.12 │ │ ├── import.go │ │ ├── import_test.go │ │ └── root.go │ ├── 1.14 │ │ ├── action_block.go │ │ ├── resource_lifecycle_action_trigger_block.go │ │ └── root.go │ ├── 1.2 │ │ ├── data.go │ │ ├── resource.go │ │ └── root.go │ ├── 1.3 │ │ ├── connection_block.go │ │ └── root.go │ ├── 1.4 │ │ ├── provisioners.go │ │ └── root.go │ ├── 1.5 │ │ ├── check.go │ │ ├── import.go │ │ └── root.go │ ├── 1.6 │ │ ├── import.go │ │ ├── root.go │ │ └── terraform.go │ ├── 1.7 │ │ ├── removed.go │ │ └── root.go │ ├── 1.8 │ │ ├── root.go │ │ └── terraform.go │ ├── 1.9 │ │ └── root.go │ ├── backends │ │ ├── artifactory.go │ │ ├── azurerm.go │ │ ├── backends.go │ │ ├── consul.go │ │ ├── cos.go │ │ ├── etcdv2.go │ │ ├── etcdv3.go │ │ ├── gcs.go │ │ ├── http.go │ │ ├── kubernetes.go │ │ ├── local.go │ │ ├── manta.go │ │ ├── object_expression.go │ │ ├── oss.go │ │ ├── pg.go │ │ ├── remote.go │ │ ├── s3.go │ │ └── swift.go │ ├── refscope │ │ └── scopes.go │ ├── search │ │ └── 1.14 │ │ │ ├── list_block.go │ │ │ ├── locals_block.go │ │ │ ├── provider_block.go │ │ │ ├── root.go │ │ │ └── variable_block.go │ ├── stacks │ │ └── 1.9 │ │ │ ├── component_block.go │ │ │ ├── deployment_block.go │ │ │ ├── identity_token_block.go │ │ │ ├── locals_block.go │ │ │ ├── orchestrate_block.go │ │ │ ├── output_block.go │ │ │ ├── provider_block.go │ │ │ ├── removed_block.go │ │ │ ├── required_providers_block.go │ │ │ ├── root.go │ │ │ ├── store_block.go │ │ │ └── variable_block.go │ ├── tests │ │ ├── 1.6 │ │ │ ├── provider_block.go │ │ │ ├── root.go │ │ │ ├── run_block.go │ │ │ └── variables_block.go │ │ ├── 1.7 │ │ │ ├── mock_data_block.go │ │ │ ├── mock_provider_block.go │ │ │ ├── mock_resource_block.go │ │ │ ├── override_data_block.go │ │ │ ├── override_module_block.go │ │ │ ├── override_resource_block.go │ │ │ └── root.go │ │ └── 1.9 │ │ │ └── root.go │ └── tokmod │ │ └── token_modifier.go └── versiongen │ ├── gen.go │ └── gen_test.go ├── module ├── meta.go ├── meta_test.go ├── module_calls.go ├── output.go └── variable.go ├── registry └── registry.go ├── schema ├── builtin_references.go ├── convert_json.go ├── convert_json_test.go ├── core_schema.go ├── core_schema_test.go ├── errors.go ├── functions.go ├── functions_merge.go ├── functions_merge_test.go ├── language_ids.go ├── module_schema.go ├── module_schema_test.go ├── provider_schema.go ├── provider_schema_test.go ├── schema_merge.go ├── schema_merge_remote_state_ds.go ├── schema_merge_test.go ├── schema_merge_v012_test.go ├── schema_merge_v013_test.go ├── schema_merge_v015_aliased_test.go ├── schema_merge_v015_test.go ├── search │ ├── search_schema.go │ ├── search_schema_merge.go │ └── search_schema_merge_test.go ├── semantic_tokens.go ├── stacks │ ├── deploy_schema.go │ ├── deploy_schema_merge.go │ ├── deploy_schema_merge_test.go │ ├── stack_schema.go │ ├── stack_schema_merge.go │ └── stack_schema_merge_test.go ├── testdata │ ├── provider-schema-terraform.json │ ├── provider-schemas-0.12.json │ ├── provider-schemas-0.13.json │ ├── provider-schemas-0.15.json │ ├── test-config-0.12.tf │ ├── test-config-0.13.tf │ ├── test-config-0.15.tf │ └── test-config-remote-module.tf ├── tests │ ├── mock_schema.go │ ├── mock_schema_merge.go │ ├── test_schema.go │ └── test_schema_merge.go ├── variable_schema.go ├── variable_schema_test.go ├── versions.go ├── versions_gen.go └── versions_test.go ├── search ├── list.go ├── meta.go └── variable.go ├── stack ├── component.go ├── deployment.go ├── meta.go ├── orchestrate.go ├── output.go ├── provider_requirements.go ├── store.go └── variable.go ├── test └── meta.go └── tools └── tools.go /.copywrite.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/.copywrite.hcl -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.go text eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hashicorp/tf-editor-experience-engineers 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | go.work* 2 | -------------------------------------------------------------------------------- /.go-version: -------------------------------------------------------------------------------- 1 | 1.22 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /META.d/_summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/META.d/_summary.yml -------------------------------------------------------------------------------- /META.d/data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/META.d/data.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/README.md -------------------------------------------------------------------------------- /backend/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/backend/backend.go -------------------------------------------------------------------------------- /backend/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/backend/cloud.go -------------------------------------------------------------------------------- /earlydecoder/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/backend.go -------------------------------------------------------------------------------- /earlydecoder/data_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/data_source.go -------------------------------------------------------------------------------- /earlydecoder/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/decoder.go -------------------------------------------------------------------------------- /earlydecoder/decoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/decoder_test.go -------------------------------------------------------------------------------- /earlydecoder/ephemeral_resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/ephemeral_resource.go -------------------------------------------------------------------------------- /earlydecoder/load_module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/load_module.go -------------------------------------------------------------------------------- /earlydecoder/provider_requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/provider_requirements.go -------------------------------------------------------------------------------- /earlydecoder/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/resource.go -------------------------------------------------------------------------------- /earlydecoder/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/schema.go -------------------------------------------------------------------------------- /earlydecoder/search/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/search/decoder.go -------------------------------------------------------------------------------- /earlydecoder/search/decoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/search/decoder_test.go -------------------------------------------------------------------------------- /earlydecoder/search/load_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/search/load_search.go -------------------------------------------------------------------------------- /earlydecoder/search/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/search/schema.go -------------------------------------------------------------------------------- /earlydecoder/stacks/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/stacks/decoder.go -------------------------------------------------------------------------------- /earlydecoder/stacks/decoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/stacks/decoder_test.go -------------------------------------------------------------------------------- /earlydecoder/stacks/load_stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/stacks/load_stack.go -------------------------------------------------------------------------------- /earlydecoder/stacks/provider_requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/stacks/provider_requirements.go -------------------------------------------------------------------------------- /earlydecoder/stacks/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/stacks/schema.go -------------------------------------------------------------------------------- /earlydecoder/tests/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/tests/decoder.go -------------------------------------------------------------------------------- /earlydecoder/tests/decoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/tests/decoder_test.go -------------------------------------------------------------------------------- /earlydecoder/tests/load_tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/tests/load_tests.go -------------------------------------------------------------------------------- /earlydecoder/tests/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/earlydecoder/tests/schema.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/go.sum -------------------------------------------------------------------------------- /internal/addr/addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/addr/addr.go -------------------------------------------------------------------------------- /internal/detect/detect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/detect.go -------------------------------------------------------------------------------- /internal/detect/detect_bitbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/detect_bitbucket.go -------------------------------------------------------------------------------- /internal/detect/detect_bitbucket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/detect_bitbucket_test.go -------------------------------------------------------------------------------- /internal/detect/detect_gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/detect_gcs.go -------------------------------------------------------------------------------- /internal/detect/detect_gcs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/detect_gcs_test.go -------------------------------------------------------------------------------- /internal/detect/detect_git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/detect_git.go -------------------------------------------------------------------------------- /internal/detect/detect_git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/detect_git_test.go -------------------------------------------------------------------------------- /internal/detect/detect_github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/detect_github.go -------------------------------------------------------------------------------- /internal/detect/detect_github_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/detect_github_test.go -------------------------------------------------------------------------------- /internal/detect/detect_s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/detect_s3.go -------------------------------------------------------------------------------- /internal/detect/detect_s3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/detect_s3_test.go -------------------------------------------------------------------------------- /internal/detect/detect_ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/detect_ssh.go -------------------------------------------------------------------------------- /internal/detect/detect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/detect_test.go -------------------------------------------------------------------------------- /internal/detect/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/get.go -------------------------------------------------------------------------------- /internal/detect/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/source.go -------------------------------------------------------------------------------- /internal/detect/source_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/detect/source_test.go -------------------------------------------------------------------------------- /internal/funcs/0.12/base_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/0.12/base_functions.go -------------------------------------------------------------------------------- /internal/funcs/0.12/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/0.12/functions.go -------------------------------------------------------------------------------- /internal/funcs/0.13/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/0.13/functions.go -------------------------------------------------------------------------------- /internal/funcs/0.14/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/0.14/functions.go -------------------------------------------------------------------------------- /internal/funcs/0.15/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/0.15/functions.go -------------------------------------------------------------------------------- /internal/funcs/1.3/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/1.3/functions.go -------------------------------------------------------------------------------- /internal/funcs/generated/1.10.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/generated/1.10.0.go -------------------------------------------------------------------------------- /internal/funcs/generated/1.4.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/generated/1.4.0.go -------------------------------------------------------------------------------- /internal/funcs/generated/1.5.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/generated/1.5.0.go -------------------------------------------------------------------------------- /internal/funcs/generated/1.8.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/generated/1.8.0.go -------------------------------------------------------------------------------- /internal/funcs/generated/1.9.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/generated/1.9.0.go -------------------------------------------------------------------------------- /internal/funcs/generated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/generated/README.md -------------------------------------------------------------------------------- /internal/funcs/generated/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/generated/doc.go -------------------------------------------------------------------------------- /internal/funcs/generated/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/generated/functions.go -------------------------------------------------------------------------------- /internal/funcs/generated/gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/funcs/generated/gen/gen.go -------------------------------------------------------------------------------- /internal/references/0.12/references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/references/0.12/references.go -------------------------------------------------------------------------------- /internal/references/1.10/references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/references/1.10/references.go -------------------------------------------------------------------------------- /internal/schema/0.12/connection_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.12/connection_block.go -------------------------------------------------------------------------------- /internal/schema/0.12/data_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.12/data_block.go -------------------------------------------------------------------------------- /internal/schema/0.12/locals_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.12/locals_block.go -------------------------------------------------------------------------------- /internal/schema/0.12/module_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.12/module_block.go -------------------------------------------------------------------------------- /internal/schema/0.12/output_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.12/output_block.go -------------------------------------------------------------------------------- /internal/schema/0.12/provider_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.12/provider_block.go -------------------------------------------------------------------------------- /internal/schema/0.12/provisioner_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.12/provisioner_block.go -------------------------------------------------------------------------------- /internal/schema/0.12/provisioners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.12/provisioners.go -------------------------------------------------------------------------------- /internal/schema/0.12/resource_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.12/resource_block.go -------------------------------------------------------------------------------- /internal/schema/0.12/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.12/root.go -------------------------------------------------------------------------------- /internal/schema/0.12/terraform_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.12/terraform_block.go -------------------------------------------------------------------------------- /internal/schema/0.12/variable_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.12/variable_block.go -------------------------------------------------------------------------------- /internal/schema/0.13/module_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.13/module_block.go -------------------------------------------------------------------------------- /internal/schema/0.13/provider_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.13/provider_block.go -------------------------------------------------------------------------------- /internal/schema/0.13/provisioners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.13/provisioners.go -------------------------------------------------------------------------------- /internal/schema/0.13/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.13/root.go -------------------------------------------------------------------------------- /internal/schema/0.13/terraform_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.13/terraform_block.go -------------------------------------------------------------------------------- /internal/schema/0.14/provisioners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.14/provisioners.go -------------------------------------------------------------------------------- /internal/schema/0.14/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.14/root.go -------------------------------------------------------------------------------- /internal/schema/0.14/terraform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.14/terraform.go -------------------------------------------------------------------------------- /internal/schema/0.14/variable_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.14/variable_block.go -------------------------------------------------------------------------------- /internal/schema/0.15/connection_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.15/connection_block.go -------------------------------------------------------------------------------- /internal/schema/0.15/provisioners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.15/provisioners.go -------------------------------------------------------------------------------- /internal/schema/0.15/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.15/root.go -------------------------------------------------------------------------------- /internal/schema/0.15/terraform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/0.15/terraform.go -------------------------------------------------------------------------------- /internal/schema/1.1/moved.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.1/moved.go -------------------------------------------------------------------------------- /internal/schema/1.1/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.1/root.go -------------------------------------------------------------------------------- /internal/schema/1.1/terraform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.1/terraform.go -------------------------------------------------------------------------------- /internal/schema/1.1/variable_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.1/variable_block.go -------------------------------------------------------------------------------- /internal/schema/1.10/ephemeral_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.10/ephemeral_block.go -------------------------------------------------------------------------------- /internal/schema/1.10/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.10/root.go -------------------------------------------------------------------------------- /internal/schema/1.12/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.12/import.go -------------------------------------------------------------------------------- /internal/schema/1.12/import_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.12/import_test.go -------------------------------------------------------------------------------- /internal/schema/1.12/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.12/root.go -------------------------------------------------------------------------------- /internal/schema/1.14/action_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.14/action_block.go -------------------------------------------------------------------------------- /internal/schema/1.14/resource_lifecycle_action_trigger_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.14/resource_lifecycle_action_trigger_block.go -------------------------------------------------------------------------------- /internal/schema/1.14/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.14/root.go -------------------------------------------------------------------------------- /internal/schema/1.2/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.2/data.go -------------------------------------------------------------------------------- /internal/schema/1.2/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.2/resource.go -------------------------------------------------------------------------------- /internal/schema/1.2/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.2/root.go -------------------------------------------------------------------------------- /internal/schema/1.3/connection_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.3/connection_block.go -------------------------------------------------------------------------------- /internal/schema/1.3/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.3/root.go -------------------------------------------------------------------------------- /internal/schema/1.4/provisioners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.4/provisioners.go -------------------------------------------------------------------------------- /internal/schema/1.4/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.4/root.go -------------------------------------------------------------------------------- /internal/schema/1.5/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.5/check.go -------------------------------------------------------------------------------- /internal/schema/1.5/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.5/import.go -------------------------------------------------------------------------------- /internal/schema/1.5/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.5/root.go -------------------------------------------------------------------------------- /internal/schema/1.6/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.6/import.go -------------------------------------------------------------------------------- /internal/schema/1.6/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.6/root.go -------------------------------------------------------------------------------- /internal/schema/1.6/terraform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.6/terraform.go -------------------------------------------------------------------------------- /internal/schema/1.7/removed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.7/removed.go -------------------------------------------------------------------------------- /internal/schema/1.7/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.7/root.go -------------------------------------------------------------------------------- /internal/schema/1.8/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.8/root.go -------------------------------------------------------------------------------- /internal/schema/1.8/terraform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.8/terraform.go -------------------------------------------------------------------------------- /internal/schema/1.9/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/1.9/root.go -------------------------------------------------------------------------------- /internal/schema/backends/artifactory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/artifactory.go -------------------------------------------------------------------------------- /internal/schema/backends/azurerm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/azurerm.go -------------------------------------------------------------------------------- /internal/schema/backends/backends.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/backends.go -------------------------------------------------------------------------------- /internal/schema/backends/consul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/consul.go -------------------------------------------------------------------------------- /internal/schema/backends/cos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/cos.go -------------------------------------------------------------------------------- /internal/schema/backends/etcdv2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/etcdv2.go -------------------------------------------------------------------------------- /internal/schema/backends/etcdv3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/etcdv3.go -------------------------------------------------------------------------------- /internal/schema/backends/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/gcs.go -------------------------------------------------------------------------------- /internal/schema/backends/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/http.go -------------------------------------------------------------------------------- /internal/schema/backends/kubernetes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/kubernetes.go -------------------------------------------------------------------------------- /internal/schema/backends/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/local.go -------------------------------------------------------------------------------- /internal/schema/backends/manta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/manta.go -------------------------------------------------------------------------------- /internal/schema/backends/object_expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/object_expression.go -------------------------------------------------------------------------------- /internal/schema/backends/oss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/oss.go -------------------------------------------------------------------------------- /internal/schema/backends/pg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/pg.go -------------------------------------------------------------------------------- /internal/schema/backends/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/remote.go -------------------------------------------------------------------------------- /internal/schema/backends/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/s3.go -------------------------------------------------------------------------------- /internal/schema/backends/swift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/backends/swift.go -------------------------------------------------------------------------------- /internal/schema/refscope/scopes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/refscope/scopes.go -------------------------------------------------------------------------------- /internal/schema/search/1.14/list_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/search/1.14/list_block.go -------------------------------------------------------------------------------- /internal/schema/search/1.14/locals_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/search/1.14/locals_block.go -------------------------------------------------------------------------------- /internal/schema/search/1.14/provider_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/search/1.14/provider_block.go -------------------------------------------------------------------------------- /internal/schema/search/1.14/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/search/1.14/root.go -------------------------------------------------------------------------------- /internal/schema/search/1.14/variable_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/search/1.14/variable_block.go -------------------------------------------------------------------------------- /internal/schema/stacks/1.9/component_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/stacks/1.9/component_block.go -------------------------------------------------------------------------------- /internal/schema/stacks/1.9/deployment_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/stacks/1.9/deployment_block.go -------------------------------------------------------------------------------- /internal/schema/stacks/1.9/identity_token_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/stacks/1.9/identity_token_block.go -------------------------------------------------------------------------------- /internal/schema/stacks/1.9/locals_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/stacks/1.9/locals_block.go -------------------------------------------------------------------------------- /internal/schema/stacks/1.9/orchestrate_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/stacks/1.9/orchestrate_block.go -------------------------------------------------------------------------------- /internal/schema/stacks/1.9/output_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/stacks/1.9/output_block.go -------------------------------------------------------------------------------- /internal/schema/stacks/1.9/provider_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/stacks/1.9/provider_block.go -------------------------------------------------------------------------------- /internal/schema/stacks/1.9/removed_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/stacks/1.9/removed_block.go -------------------------------------------------------------------------------- /internal/schema/stacks/1.9/required_providers_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/stacks/1.9/required_providers_block.go -------------------------------------------------------------------------------- /internal/schema/stacks/1.9/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/stacks/1.9/root.go -------------------------------------------------------------------------------- /internal/schema/stacks/1.9/store_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/stacks/1.9/store_block.go -------------------------------------------------------------------------------- /internal/schema/stacks/1.9/variable_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/stacks/1.9/variable_block.go -------------------------------------------------------------------------------- /internal/schema/tests/1.6/provider_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/tests/1.6/provider_block.go -------------------------------------------------------------------------------- /internal/schema/tests/1.6/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/tests/1.6/root.go -------------------------------------------------------------------------------- /internal/schema/tests/1.6/run_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/tests/1.6/run_block.go -------------------------------------------------------------------------------- /internal/schema/tests/1.6/variables_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/tests/1.6/variables_block.go -------------------------------------------------------------------------------- /internal/schema/tests/1.7/mock_data_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/tests/1.7/mock_data_block.go -------------------------------------------------------------------------------- /internal/schema/tests/1.7/mock_provider_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/tests/1.7/mock_provider_block.go -------------------------------------------------------------------------------- /internal/schema/tests/1.7/mock_resource_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/tests/1.7/mock_resource_block.go -------------------------------------------------------------------------------- /internal/schema/tests/1.7/override_data_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/tests/1.7/override_data_block.go -------------------------------------------------------------------------------- /internal/schema/tests/1.7/override_module_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/tests/1.7/override_module_block.go -------------------------------------------------------------------------------- /internal/schema/tests/1.7/override_resource_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/tests/1.7/override_resource_block.go -------------------------------------------------------------------------------- /internal/schema/tests/1.7/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/tests/1.7/root.go -------------------------------------------------------------------------------- /internal/schema/tests/1.9/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/tests/1.9/root.go -------------------------------------------------------------------------------- /internal/schema/tokmod/token_modifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/schema/tokmod/token_modifier.go -------------------------------------------------------------------------------- /internal/versiongen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/versiongen/gen.go -------------------------------------------------------------------------------- /internal/versiongen/gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/internal/versiongen/gen_test.go -------------------------------------------------------------------------------- /module/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/module/meta.go -------------------------------------------------------------------------------- /module/meta_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/module/meta_test.go -------------------------------------------------------------------------------- /module/module_calls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/module/module_calls.go -------------------------------------------------------------------------------- /module/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/module/output.go -------------------------------------------------------------------------------- /module/variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/module/variable.go -------------------------------------------------------------------------------- /registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/registry/registry.go -------------------------------------------------------------------------------- /schema/builtin_references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/builtin_references.go -------------------------------------------------------------------------------- /schema/convert_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/convert_json.go -------------------------------------------------------------------------------- /schema/convert_json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/convert_json_test.go -------------------------------------------------------------------------------- /schema/core_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/core_schema.go -------------------------------------------------------------------------------- /schema/core_schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/core_schema_test.go -------------------------------------------------------------------------------- /schema/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/errors.go -------------------------------------------------------------------------------- /schema/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/functions.go -------------------------------------------------------------------------------- /schema/functions_merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/functions_merge.go -------------------------------------------------------------------------------- /schema/functions_merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/functions_merge_test.go -------------------------------------------------------------------------------- /schema/language_ids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/language_ids.go -------------------------------------------------------------------------------- /schema/module_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/module_schema.go -------------------------------------------------------------------------------- /schema/module_schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/module_schema_test.go -------------------------------------------------------------------------------- /schema/provider_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/provider_schema.go -------------------------------------------------------------------------------- /schema/provider_schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/provider_schema_test.go -------------------------------------------------------------------------------- /schema/schema_merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/schema_merge.go -------------------------------------------------------------------------------- /schema/schema_merge_remote_state_ds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/schema_merge_remote_state_ds.go -------------------------------------------------------------------------------- /schema/schema_merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/schema_merge_test.go -------------------------------------------------------------------------------- /schema/schema_merge_v012_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/schema_merge_v012_test.go -------------------------------------------------------------------------------- /schema/schema_merge_v013_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/schema_merge_v013_test.go -------------------------------------------------------------------------------- /schema/schema_merge_v015_aliased_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/schema_merge_v015_aliased_test.go -------------------------------------------------------------------------------- /schema/schema_merge_v015_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/schema_merge_v015_test.go -------------------------------------------------------------------------------- /schema/search/search_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/search/search_schema.go -------------------------------------------------------------------------------- /schema/search/search_schema_merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/search/search_schema_merge.go -------------------------------------------------------------------------------- /schema/search/search_schema_merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/search/search_schema_merge_test.go -------------------------------------------------------------------------------- /schema/semantic_tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/semantic_tokens.go -------------------------------------------------------------------------------- /schema/stacks/deploy_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/stacks/deploy_schema.go -------------------------------------------------------------------------------- /schema/stacks/deploy_schema_merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/stacks/deploy_schema_merge.go -------------------------------------------------------------------------------- /schema/stacks/deploy_schema_merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/stacks/deploy_schema_merge_test.go -------------------------------------------------------------------------------- /schema/stacks/stack_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/stacks/stack_schema.go -------------------------------------------------------------------------------- /schema/stacks/stack_schema_merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/stacks/stack_schema_merge.go -------------------------------------------------------------------------------- /schema/stacks/stack_schema_merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/stacks/stack_schema_merge_test.go -------------------------------------------------------------------------------- /schema/testdata/provider-schema-terraform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/testdata/provider-schema-terraform.json -------------------------------------------------------------------------------- /schema/testdata/provider-schemas-0.12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/testdata/provider-schemas-0.12.json -------------------------------------------------------------------------------- /schema/testdata/provider-schemas-0.13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/testdata/provider-schemas-0.13.json -------------------------------------------------------------------------------- /schema/testdata/provider-schemas-0.15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/testdata/provider-schemas-0.15.json -------------------------------------------------------------------------------- /schema/testdata/test-config-0.12.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/testdata/test-config-0.12.tf -------------------------------------------------------------------------------- /schema/testdata/test-config-0.13.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/testdata/test-config-0.13.tf -------------------------------------------------------------------------------- /schema/testdata/test-config-0.15.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/testdata/test-config-0.15.tf -------------------------------------------------------------------------------- /schema/testdata/test-config-remote-module.tf: -------------------------------------------------------------------------------- 1 | module "remote-example" { 2 | source = "namespace/foo/bar" 3 | } 4 | -------------------------------------------------------------------------------- /schema/tests/mock_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/tests/mock_schema.go -------------------------------------------------------------------------------- /schema/tests/mock_schema_merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/tests/mock_schema_merge.go -------------------------------------------------------------------------------- /schema/tests/test_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/tests/test_schema.go -------------------------------------------------------------------------------- /schema/tests/test_schema_merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/tests/test_schema_merge.go -------------------------------------------------------------------------------- /schema/variable_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/variable_schema.go -------------------------------------------------------------------------------- /schema/variable_schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/variable_schema_test.go -------------------------------------------------------------------------------- /schema/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/versions.go -------------------------------------------------------------------------------- /schema/versions_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/versions_gen.go -------------------------------------------------------------------------------- /schema/versions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/schema/versions_test.go -------------------------------------------------------------------------------- /search/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/search/list.go -------------------------------------------------------------------------------- /search/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/search/meta.go -------------------------------------------------------------------------------- /search/variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/search/variable.go -------------------------------------------------------------------------------- /stack/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/stack/component.go -------------------------------------------------------------------------------- /stack/deployment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/stack/deployment.go -------------------------------------------------------------------------------- /stack/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/stack/meta.go -------------------------------------------------------------------------------- /stack/orchestrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/stack/orchestrate.go -------------------------------------------------------------------------------- /stack/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/stack/output.go -------------------------------------------------------------------------------- /stack/provider_requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/stack/provider_requirements.go -------------------------------------------------------------------------------- /stack/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/stack/store.go -------------------------------------------------------------------------------- /stack/variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/stack/variable.go -------------------------------------------------------------------------------- /test/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/test/meta.go -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-schema/HEAD/tools/tools.go --------------------------------------------------------------------------------