Skip to content

Commit

Permalink
refactor: Mark error_page elements as optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Ishar committed Aug 14, 2023
1 parent c6e2185 commit 9b6a7a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ override.tf.json
.vscode/*
!.vscode/tasks.json
*.code-workspace
.history
5 changes: 1 addition & 4 deletions internal/auth0/tenant/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,19 +111,16 @@ func NewResource() *schema.Resource {
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"html": {
Type: schema.TypeString,
Required: true,
Type: schema.TypeString,
Description: "HTML format with supported Liquid syntax. " +
"Customized content of the error page.",
},
"show_log_link": {
Type: schema.TypeBool,
Required: true,
Description: "Indicates whether to show the link to logs as part of the default error page.",
},
"url": {
Type: schema.TypeString,
Required: true,
Description: "URL to redirect to when an error occurs rather than showing the default error page.",
},
},
Expand Down

0 comments on commit 9b6a7a7

Please sign in to comment.