tflookup – Developer Diary Part 2
Dear Diary!
Hmmm… A lookup app. How could that work?
- I need a frontend obviously. And a backend, that does the heavy work.
- Frontend and backend should communicate through REST. What else?
- The backend should index the Terraform documentation
- Everything should be well tested of course
First things first. The absolute basis for the whole project is the documentation index. Without that, I could trash the whole thing.
So, how is the terraform documentation built actually?
The Terraform developers do that using a massive repository with multiple submodules for all providers:
hashicorp
/
terraform-website
Prototype of Terraform website being assembled from multiple repositories
Terraform Website
This repository contains the build infrastructure and some of the content for terraform.io. Pull requests from the community are welcomed!
Where the Docs Live
terraform.io is a static site built from Markdown source files using Middleman. Unlike most such sites, it draws content from a lot of different Git repositories, which can make it challenging to contribute to.
To find a page the easy way: view it on terraform.io and click the „Edit this page“ link at the bottom. (As of Spring 2019, those links get routed to the correct repo for everything except the Google Cloud Platform provider.)
If you’d rather just remember where to look:
- This repository has the Terraform Enterprise docs, the Terraform GitHub Actions docs, and the Extending Terraform section
- Those files can be found at
content/source/docs/
. Themaster
branch is the „live“ content that gets deployed to terraform.io.
- Those files can be found at
- The hashicorp/terraform…
They write all documentation in Markdown with Frontmatter included and cramp everything together with Middleman
The Frontmatter includes titles, layouts, description and the information where the documentation lives in the documentation tree on the website.
So that’s what I need.
I „submoduled“ the terraform-website repository as well and wrote an Indexer, that walks through every datasource and resource documentation available for all providers in the terraform website.
That worked quite well (aside from some minor errors)[https://github.com/dploeger/tflookup/blob/master/indexErrors.txt], where people forgot how to write proper Frontmatter.
However, I needed to make some assumptions:
- Every vendor has a „website/docs“ subfolder where its documentation lives
- There’s only a datasource or a resource
- The datasources are living in a „d“ directory, the resources in an „r“ directory
- The titles are designed as „: „
I didn’t go through all documentation files, but the documentation seems to be quite structured like this.
Using all this information, I could create my documentation index, which included the title, the name, wether it’s a datasource or a resource, the description and a link to the real documentation page.
I included ways to store the indexed documentation, so the future frontend server wouldn’t need to initialize all the required submodules for that. I also wrote a script which updates the documentation every night, which is running on my private server.
Okay, index done.
Yours
Dennis
This post is one of five posts from the tflookup developer diary series
Cover Image: „diary writing“ by Fredrik Rubensson
Originally published to dev.to
Calendar
M | D | M | D | F | S | S |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 |
Archive
- Januar 2024
- Dezember 2023
- April 2021
- März 2021
- September 2020
- Dezember 2019
- November 2019
- Oktober 2019
- Juli 2019
- Juni 2019
- Mai 2019
- April 2019
- März 2019
- September 2018
- August 2018
- Juli 2018
- März 2018
- Januar 2018
- Dezember 2017
- September 2017
- März 2017
- Februar 2017
- Januar 2017
- August 2016
- Mai 2016
- Dezember 2015
- November 2015
- August 2015
- März 2015
- Dezember 2014
- September 2014
- August 2014
- Juli 2014
- Februar 2014
- Oktober 2013
- September 2013
- August 2013
- Juli 2013
- Juni 2013
- Mai 2013
- April 2013
- November 2012
- Oktober 2012
- September 2012
- August 2012
- Juni 2012
- Mai 2012
- März 2012
- Februar 2012
- Januar 2012
- November 2011
- Juli 2011
- Juni 2011
- März 2011
- Februar 2011
- Januar 2011
- Dezember 2010
- November 2010
- April 2010
- Februar 2010