Venafi / terraform-provider-venafi

HashiCorp Terraform provider that uses Venafi to streamline machine identity (certificate and key) acquisition.
https://www.terraform.io/docs/providers/venafi/
Mozilla Public License 2.0
16 stars 20 forks source link

Migrate provider to the Terraform Plugin SDK. #3

Closed lazzurs closed 4 years ago

lazzurs commented 4 years ago

This migrates the provider to the plugin SDK with the automated migration tool. No issues found.

Also changed the module name to source from the terraform-providers repo as that is where the provider appears to live.

mr-tron commented 4 years ago

For passing the test please add file tools.go with content

// +build tools

package main

import (
    _ "github.com/client9/misspell/cmd/misspell"
    _ "github.com/golangci/golangci-lint/cmd/golangci-lint"
)

and execute go mod vendor

lazzurs commented 4 years ago

@mr-tron Tests are now passing.