Skip to content

Commit

Permalink
fix nas volume varification range 100-10000
Browse files Browse the repository at this point in the history
  • Loading branch information
minosmlee committed May 4, 2022
1 parent 7bedfd6 commit 58840af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ncloud/resource_ncloud_nas_volume.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func resourceNcloudNasVolume() *schema.Resource {
"volume_size": {
Type: schema.TypeInt,
Required: true,
ValidateDiagFunc: ToDiagFunc(validation.IntBetween(500, 10000)),
ValidateDiagFunc: ToDiagFunc(validation.IntBetween(100, 10000)),
},
"volume_allotment_protocol_type": {
Type: schema.TypeString,
Expand Down

0 comments on commit 58840af

Please sign in to comment.