Skip to content

Commit

Permalink
make optional
Browse files Browse the repository at this point in the history
  • Loading branch information
BarnabyShearer committed Nov 22, 2021
1 parent e9a6e02 commit 75b75c8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dockerhub/resource_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,19 @@ func resourceRepository() *schema.Resource {
"description": {
Type: schema.TypeString,
Required: false,
Optional: true,
Description: "Repository name.",
},
"full_description": {
Type: schema.TypeString,
Required: false,
Optional: true,
Description: "Repository name.",
},
"private": {
Type: schema.TypeBool,
Required: false,
Optional: true,
Default: false,
Description: "Is the repository private.",
},
Expand Down

0 comments on commit 75b75c8

Please sign in to comment.