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

Refactor Schema and Schema Data Related Documentation #554

Merged
merged 41 commits into from Dec 13, 2022
Merged
Show file tree
Hide file tree
Changes from 36 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
dd4bbc2
Adding Getting Started section with Simple Example Provider subsectio…
bendbennett Nov 28, 2022
a4b63f2
Updating types in simple example provider (#418)
bendbennett Nov 30, 2022
d635814
Adding core concepts subsection to getting started section (#418)
bendbennett Nov 30, 2022
60a4462
Moving schemas to handling data - schemas (#418)
bendbennett Nov 30, 2022
050ba43
Adding data handling directory and terraform concepts placeholder pag…
bendbennett Nov 30, 2022
988c1f8
Updating "Simple Example Provider" following feedback (#418)
bendbennett Dec 6, 2022
c8a7082
Restructuring content (#418)
bendbennett Dec 6, 2022
6228f97
Extracting "Conversion Rules" from "Acessing State" and "Writing Stat…
bendbennett Dec 8, 2022
bc540d3
Update link (#418)
bendbennett Dec 8, 2022
bda6ee7
Update links (#418)
bendbennett Dec 8, 2022
41f1fc5
Updates to "simple example provider" following feedback (#418)
bendbennett Dec 8, 2022
63a4967
Updating naming of "Core Concepts" to "Core Configuration Concepts" i…
bendbennett Dec 8, 2022
ec28812
Fixing reference to data source (#418)
bendbennett Dec 8, 2022
c3942ef
Removing links and making examples generic on migration - testing pag…
bendbennett Dec 8, 2022
7869744
Update link to schemas in migrating - schema - overview page (#418)
bendbennett Dec 8, 2022
a19d742
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 8, 2022
3f3e439
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 8, 2022
7a3577c
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 8, 2022
af48f03
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 8, 2022
f032162
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 8, 2022
ae37506
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 8, 2022
eee789a
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 9, 2022
794e22f
Fix wording to make it data source-specific (#418)
bendbennett Dec 9, 2022
4949ef1
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 9, 2022
d8b4061
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 9, 2022
4e37b59
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 9, 2022
515d414
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 9, 2022
01fb2c8
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 9, 2022
3290d60
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 9, 2022
ade54df
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 9, 2022
fdc6d8f
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 9, 2022
3330482
Remove links to source code and make examples generic in migrating - …
bendbennett Dec 9, 2022
85aff91
Moving "Getting Started - Core Configuration Concepts" over to "Handl…
bendbennett Dec 12, 2022
4e2cbfd
Renaming page from "Getting Started - Example Provider" to "Getting S…
bendbennett Dec 12, 2022
63fea15
Adding initial content for "Handling Data - Blocks" section (#418)
bendbennett Dec 12, 2022
faf5f7a
Apply suggestions from code review
bendbennett Dec 12, 2022
18b5548
Apply suggestions from code review
bendbennett Dec 13, 2022
20bbee3
Adding nested block configuration syntax and schema examples to the "…
bendbennett Dec 13, 2022
3b1981e
Using active voice (#418)
bendbennett Dec 13, 2022
da3bbdb
Apply suggestions from code review
bendbennett Dec 13, 2022
5b39524
Merge branch 'main' into bendbennett/issues-418
bflad Dec 13, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
78 changes: 54 additions & 24 deletions website/data/plugin-framework-nav-data.json
Expand Up @@ -7,8 +7,21 @@
"path": ""
},
{
"title": "Learn Collection",
"href": "https://learn.hashicorp.com/collections/terraform/providers-plugin-framework?utm_source=WEBSITE&utm_medium=WEB_IO&utm_offer=ARTICLE_PAGE&utm_content=DOCS"
"title": "Getting Started",
"routes": [
{
"title": "Provider Code Walkthrough",
"path": "getting-started/code-walkthrough"
},
{
"title": "Tutorials",
"href": "https://learn.hashicorp.com/collections/terraform/providers-plugin-framework?utm_source=WEBSITE&utm_medium=WEB_IO&utm_offer=ARTICLE_PAGE&utm_content=DOCS"
},
{
"title": "Clone Template Repository",
"href": "https://github.com/hashicorp/terraform-provider-scaffolding-framework"
}
]
},
{
"title": "Provider Servers",
Expand Down Expand Up @@ -102,28 +115,45 @@
]
},
{
"title": "Schemas",
"path": "schemas"
},
{
"title": "Paths",
"path": "paths"
},
{
"title": "Path Expressions",
"path": "path-expressions"
},
{
"title": "Attribute Types",
"path": "types"
},
{
"title": "Accessing State, Config, and Plan",
"path": "accessing-values"
},
{
"title": "Writing State",
"path": "writing-state"
"title": "Handling Data",
"routes": [
{
"title": "Terraform Concepts",
"path": "handling-data/terraform-concepts"
},
{
"title": "Schemas",
"path": "handling-data/schemas"
},
{
"title": "Attributes",
"path": "handling-data/attributes"
},
{
"title": "Blocks",
"path": "handling-data/blocks"
},
{
"title": "Paths",
"path": "handling-data/paths"
},
{
"title": "Path Expressions",
"path": "handling-data/path-expressions"
},
{
"title": "Accessing Terraform Data",
"path": "handling-data/accessing-values"
},
{
"title": "Writing Data",
"path": "handling-data/writing-state"
},
{
"title": "Conversion Rules",
"path": "handling-data/conversion-rules"
}
]
},
{
"title": "Returning Errors and Warnings",
Expand Down