src/terraform/providers/terraform-provider-avere/provider.go (11 lines of code) (raw):

// Copyright (C) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE-CODE in the project root for license information. package main import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" ) func Provider() *schema.Provider { return &schema.Provider{ ResourcesMap: map[string]*schema.Resource{ "avere_vfxt": resourceVfxt(), }, } }