Skip to content

Commit c0d38d3

Browse files
committed
move code block
1 parent 50c6a0d commit c0d38d3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

provider/parameter.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,12 @@ func parameterDataSource() *schema.Resource {
250250
ValidateFunc: validation.StringInSlice(toStrings(ParameterFormTypes()), false),
251251
Description: fmt.Sprintf("The type of this parameter. Must be one of: [%s].", strings.Join(toStrings(ParameterFormTypes()), ", ")),
252252
},
253+
"form_type_metadata": {
254+
Type: schema.TypeString,
255+
Default: `{}`,
256+
Description: "JSON encoded string containing the metadata for controlling the appearance of this parameter in the UI.",
257+
Optional: true,
258+
},
253259
"mutable": {
254260
Type: schema.TypeBool,
255261
Optional: true,
@@ -276,12 +282,6 @@ func parameterDataSource() *schema.Resource {
276282
return nil, nil
277283
},
278284
},
279-
"form_type_metadata": {
280-
Type: schema.TypeString,
281-
Default: `{}`,
282-
Description: "JSON encoded string containing the metadata for controlling the appearance of this parameter in the UI.",
283-
Optional: true,
284-
},
285285
"option": {
286286
Type: schema.TypeList,
287287
Description: "Each `option` block defines a value for a user to select from.",

0 commit comments

Comments
 (0)