We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8881ae0 commit af7a1edCopy full SHA for af7a1ed
provider/workspace_preset.go
@@ -8,6 +8,11 @@ import (
8
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
9
)
10
11
+type WorkspacePreset struct {
12
+ Name string `mapstructure:"name"`
13
+ Parameters map[string]string `mapstructure:"parameters"`
14
+}
15
+
16
func workspacePresetDataSource() *schema.Resource {
17
return &schema.Resource{
18
SchemaVersion: 1,
0 commit comments