Skip to content

Commit

Permalink
feat: add provider module (CLOUD-1078) (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Nemerson authored and ricleal-fugue committed Jan 14, 2023
1 parent b97b85b commit 2909506
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions provider/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Provider

This is a trivial module intended only to expose the Terraform provider
publicly.
10 changes: 10 additions & 0 deletions provider/provider.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package provider

import (
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-provider-azurerm/internal/provider"
)

func Provider() *schema.Provider {
return provider.AzureProvider()
}

0 comments on commit 2909506

Please sign in to comment.