8000
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 77de38e commit a4f4065Copy full SHA for a4f4065
provider/parameter.go
@@ -54,7 +54,7 @@ type Parameter struct {
54
DisplayName string `mapstructure:"display_name"`
55
Description string
56
Type OptionType
57
- FormType ParameterFormType
+ FormType ParameterFormType `mapstructure:"form_type"`
58
Mutable bool
59
Default *string
60
Icon string
@@ -86,10 +86,10 @@ func parameterDataSource() *schema.Resource {
86
var parameter Parameter
87
err = mapstructure.Decode(struct {
88
Name interface{}
89
- DisplayName interface{}
+ DisplayName interface{} `mapstructure:"display_name"`
90
Description interface{}
91
Type interface{}
92
- FormType interface{}
+ FormType interface{} `mapstructure:"form_type"`
93
Mutable interface{}
94
Default interface{}
95
Icon interface{}
0 commit comments