splunk / terraform-provider-splunk

Terraform Provider for Splunk
Mozilla Public License 2.0
104 stars 78 forks source link

Update go module path to use full github host path #28

Closed bhayes-zd closed 3 years ago

bhayes-zd commented 4 years ago

Current Issue

The current module path is terraform-provider-splunk. This makes it a tedious process requiring users to clone the repo into their local gopath using git clone. It then requires replacing the module path with something like the following to utilize the splunk pkg inside this repo as a go module.

replace github.com/splunk/terraform-provider-splunk => ../../splunk/terraform-provider-splunk 

Proposed Change

Change the module path in the go.mod file to github.com/splunk/terraform-provider-splunk in order to more easily allow users to leverage your models, clients, and tooling within the client and splunk packages.

anushjay commented 4 years ago

@bhayes-zd Thanks! Appreciate the suggestion. Will try to get this as soon as we can.

anushjay commented 3 years ago

@bhayes-zd FYI - Following other providers go mod setup and moving to github.com/terraform-providers/terraform-provider-splunk

bhayes-zd commented 3 years ago

@anushjay Perfect! I'll keep an eye on #32. Thanks so much. ❤️