From 0d84cf7520663e832890911522c71b8fd93aaaa6 Mon Sep 17 00:00:00 2001 From: Evan Nemerson <100213719+evan-snyk@users.noreply.github.com> Date: Mon, 9 Jan 2023 12:37:19 -0500 Subject: [PATCH] feat: add provider module (CLOUD-1078) (#54) --- provider/README.md | 4 ++++ provider/provider.go | 10 ++++++++++ 2 files changed, 14 insertions(+) create mode 100644 provider/README.md create mode 100644 provider/provider.go diff --git a/provider/README.md b/provider/README.md new file mode 100644 index 000000000000..c6c92ecbb978 --- /dev/null +++ b/provider/README.md @@ -0,0 +1,4 @@ +# Provider + +This is a trivial module intended only to expose the Terraform provider +publicly. diff --git a/provider/provider.go b/provider/provider.go new file mode 100644 index 000000000000..95ff80666d7f --- /dev/null +++ b/provider/provider.go @@ -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() +}