rename provider and provisioner packages

Using plural names to avoid collisions in existing code.
This commit is contained in:
James Bardin 2018-06-21 14:31:48 -04:00 committed by Martin Atkins
parent 0742e756e5
commit 1473d09c50
5 changed files with 7 additions and 7 deletions

View File

@ -1,3 +0,0 @@
// Package provider contains the interface and primary types required to
// implement a Terraform resource provider.
package provider

3
providers/doc.go Normal file
View File

@ -0,0 +1,3 @@
// Package providers contains the interface and primary types required to
// implement a Terraform resource provider.
package providers

View File

@ -1,4 +1,4 @@
package provider
package providers
import (
"github.com/hashicorp/terraform/config/configschema"

View File

@ -53,9 +53,9 @@ type ProvisionResourceRequest struct {
// Config is the complete provisioner configuration.
Config cty.Value
// Connection is a map of string values containing any information required
// to access the resource instance.
Connection map[string]string
// Connection contains any information required to access the resource
// instance.
Connection cty.Value
// UIOutput is used to return output during the Apply operation.
UIOutput UIOutput