Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions linode/firewall/framework_schema_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var ruleNestedObject = schema.NestedBlockObject{
Description: "Used to identify this rule. For display purposes only.",
Required: true,
Validators: []validator.String{
stringvalidator.LengthBetween(3, 32),
stringvalidator.LengthBetween(3, 64),
},
},
"action": schema.StringAttribute{
Expand Down Expand Up @@ -106,7 +106,7 @@ var frameworkResourceSchema = schema.Schema{
" If no label is provided, a default will be assigned.",
Required: true,
Validators: []validator.String{
stringvalidator.LengthBetween(3, 32),
stringvalidator.LengthBetween(3, 64),
},
},
"tags": schema.SetAttribute{
Expand Down