mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
rename provider and provisioner packages
Using plural names to avoid collisions in existing code.
This commit is contained in:
parent
0742e756e5
commit
1473d09c50
@ -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
3
providers/doc.go
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
// Package providers contains the interface and primary types required to
|
||||||
|
// implement a Terraform resource provider.
|
||||||
|
package providers
|
@ -1,4 +1,4 @@
|
|||||||
package provider
|
package providers
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/hashicorp/terraform/config/configschema"
|
"github.com/hashicorp/terraform/config/configschema"
|
@ -53,9 +53,9 @@ type ProvisionResourceRequest struct {
|
|||||||
// Config is the complete provisioner configuration.
|
// Config is the complete provisioner configuration.
|
||||||
Config cty.Value
|
Config cty.Value
|
||||||
|
|
||||||
// Connection is a map of string values containing any information required
|
// Connection contains any information required to access the resource
|
||||||
// to access the resource instance.
|
// instance.
|
||||||
Connection map[string]string
|
Connection cty.Value
|
||||||
|
|
||||||
// UIOutput is used to return output during the Apply operation.
|
// UIOutput is used to return output during the Apply operation.
|
||||||
UIOutput UIOutput
|
UIOutput UIOutput
|
Loading…
Reference in New Issue
Block a user