Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 2.95 KB

File metadata and controls

36 lines (24 loc) · 2.95 KB
page_title description
Home - Plugin Development: Framework
Develop Terraform providers using the recommended plugin framework.

Terraform Plugin Framework

-> Note: The Plugin Framework is in beta.

The plugin framework is a new way to develop Terraform Plugins on protocol version 6 or protocol version 5. It offers improvements and new features from Teraform Plugin SDKv2.

~> Important: Which SDK Should I Use? explains the differences between Teraform Plugin SDKv2 and Terraform Plugin Framework to help you decide which option is right for your provider.

Get Started

Key Concepts

  • Provider Servers encapsulate all Terraform plugin details and handle all calls for provider, resource, and data source operations by implementing the Terraform Plugin Protocol. They are implemented as binaries that the Terraform CLI downloads, starts, and stops.
  • Providers are the top level abstraction that define the available resources and data sources for practitioners to use and may accept its own configuration, such as authentication information.
  • Schemas define available fields for provider, resource, or provisioner configuration block, and give Terraform metadata about those fields.
  • Resources are an abstraction that allow Terraform to manage infrastructure objects, such as a compute instance, an access policy, or disk. Providers act as a translation layer between Terraform and an API, offering one or more resources for practitioners to define in a configuration.
  • Data Sources are an abstraction that allow Terraform to reference external data. Providers have data sources that tell Terraform how to request external data and how to convert the response into a format that practitioners can interpolate.

Test and Publish

Combine or Translate