Jump to content

Terraform provider code generation now in tech preview


Recommended Posts

Today, we are excited to announce a tech preview of HashiCorp Terraform provider code generation, consisting of a suite of tools that generate Terraform provider code from an OpenAPI specification. Included in this preview is a provider code specification that lets developers extend code generation to work with their own tooling and development practices.

A new ecosystem for Terraform provider code generation

Providers are executable binaries written in the Go language that act as a bridge between Terraform and an API service. Terraform’s ecosystem currently has more than 3,600 providers in the public registry, of which a majority of the code has been manually developed.

Bridging between API services and Terraform provider code is often repetitive across resources and operations. This repetitive maintenance can result in code consistency issues such as schema definitions missing attributes and validation, or data mapping that has invalid conversions between types.

Provider maintainers have managed these issues with shared code, linting tools, and in some cases, specialized code generation. Code generation can reduce maintenance burden, as well as create more consistency in the codebase. However, existing provider code generation tooling tends to be very specialized to individual providers.

The HashiCorp Terraform provider code generation tech preview introduces a scalable code generation ecosystem based on a shared specification that can be extended by the existing provider developer community. HashiCorp is offering three general-purpose solutions to bootstrap the ecosystem that can be used together or independently.

  1. The provider code specification is a versioned interface, implemented with a JSON schema, upon which specialized provider code generation tools can be based.
  2. The OpenAPI provider spec generator is a CLI tool that transforms an OpenAPI 3.x specification into a provider code specification.
  3. The framework code generator is a CLI tool that generates Terraform plugin framework code from a provider code specification. This tool currently generates schema and data modeling provider code.

If your Terraform provider interacts with an API service that is documented with an OpenAPI specification, you could use all of the available tools to generate provider code, as shown here:

Generate

However, if your API service uses a different interface definition language (IDL), such as Protobuf, you may prefer to build your own provider spec generator specific to your API, then use the available framework code generator, as shown here:

Generate

Getting started with Terraform provider code generation

To learn more about the code generation tools and the overall solution design, please refer to the code generation documentation. You can get a hands-on understanding of the new tools in the code generation tools tutorial and workflow example.

Please share any bugs, enhancement requests, or questions with us via the Terraform discussion forum. We look forward to your feedback and want to thank you for being such a great community!

If you are completely new to Terraform, sign up for Terraform Cloud and get started using the Free offering today.

View the full article

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...