Skip to content

Commit

Permalink
Fix whitespace diffs on logging_sink exclusion filters (#11900)
Browse files Browse the repository at this point in the history
  • Loading branch information
lyoung-confluent authored Oct 3, 2024
1 parent 385b134 commit ee71108
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,10 @@ func resourceLoggingSinkSchema() map[string]*schema.Schema {
Description: `A description of this exclusion.`,
},
"filter": {
Type: schema.TypeString,
Required: true,
Description: `An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries`,
Type: schema.TypeString,
Required: true,
DiffSuppressFunc: OptionalSurroundingSpacesSuppress,
Description: `An advanced logs filter that matches the log entries to be excluded. By using the sample function, you can exclude less than 100% of the matching log entries`,
},
"disabled": {
Type: schema.TypeBool,
Expand Down

0 comments on commit ee71108

Please sign in to comment.