Skip to content

Commit

Permalink
resource/aws_storagegateway_nfs_file_share: Use IntAtLeast(0) for now…
Browse files Browse the repository at this point in the history
… to workaround 32-bit binary releases
  • Loading branch information
bflad committed Aug 2, 2018
1 parent 9debf1a commit dd7d40c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aws/resource_aws_storagegateway_nfs_file_share.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ func resourceAwsStorageGatewayNfsFileShare() *schema.Resource {
Type: schema.TypeInt,
Optional: true,
Default: 65534,
ValidateFunc: validation.IntBetween(0, 4294967294),
ValidateFunc: validation.IntAtLeast(0),
},
"owner_id": {
Type: schema.TypeInt,
Optional: true,
Default: 65534,
ValidateFunc: validation.IntBetween(0, 4294967294),
ValidateFunc: validation.IntAtLeast(0),
},
},
},
Expand Down

0 comments on commit dd7d40c

Please sign in to comment.