123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- // Copyright (c) HashiCorp, Inc.
- // SPDX-License-Identifier: MPL-2.0
- package provider
- import (
- "context"
- "net/http"
- "github.com/hashicorp/terraform-plugin-framework/datasource"
- "github.com/hashicorp/terraform-plugin-framework/function"
- "github.com/hashicorp/terraform-plugin-framework/provider"
- "github.com/hashicorp/terraform-plugin-framework/provider/schema"
- "github.com/hashicorp/terraform-plugin-framework/resource"
- "github.com/hashicorp/terraform-plugin-framework/types"
- )
- // Ensure ScaffoldingProvider satisfies various provider interfaces.
- var _ provider.Provider = &ScaffoldingProvider{}
- var _ provider.ProviderWithFunctions = &ScaffoldingProvider{}
- // ScaffoldingProvider defines the provider implementation.
- type ScaffoldingProvider struct {
- // version is set to the provider version on release, "dev" when the
- // provider is built and ran locally, and "test" when running acceptance
- // testing.
- version string
- }
- // ScaffoldingProviderModel describes the provider data model.
- type ScaffoldingProviderModel struct {
- Endpoint types.String `tfsdk:"endpoint"`
- }
- func (p *ScaffoldingProvider) Metadata(ctx context.Context, req provider.MetadataRequest, resp *provider.MetadataResponse) {
- resp.TypeName = "scaffolding"
- resp.Version = p.version
- }
- func (p *ScaffoldingProvider) Schema(ctx context.Context, req provider.SchemaRequest, resp *provider.SchemaResponse) {
- resp.Schema = schema.Schema{
- Attributes: map[string]schema.Attribute{
- "endpoint": schema.StringAttribute{
- MarkdownDescription: "Example provider attribute",
- Optional: true,
- },
- },
- }
- }
- func (p *ScaffoldingProvider) Configure(ctx context.Context, req provider.ConfigureRequest, resp *provider.ConfigureResponse) {
- var data ScaffoldingProviderModel
- resp.Diagnostics.Append(req.Config.Get(ctx, &data)...)
- if resp.Diagnostics.HasError() {
- return
- }
- // Configuration values are now available.
- // if data.Endpoint.IsNull() { /* ... */ }
- // Example client configuration for data sources and resources
- client := http.DefaultClient
- resp.DataSourceData = client
- resp.ResourceData = client
- }
- func (p *ScaffoldingProvider) Resources(ctx context.Context) []func() resource.Resource {
- return []func() resource.Resource{
- NewExampleResource,
- }
- }
- func (p *ScaffoldingProvider) DataSources(ctx context.Context) []func() datasource.DataSource {
- return []func() datasource.DataSource{
- NewExampleDataSource,
- }
- }
- func (p *ScaffoldingProvider) Functions(ctx context.Context) []func() function.Function {
- return []func() function.Function{
- NewExampleFunction,
- }
- }
- func New(version string) func() provider.Provider {
- return func() provider.Provider {
- return &ScaffoldingProvider{
- version: version,
- }
- }
- }
|