Skip to content

Commit

Permalink
Fix whitespace diffs on logging_sink exclusion filters (GoogleCloudPl…
Browse files Browse the repository at this point in the history
  • Loading branch information
lyoung-confluent authored and BBBmau committed Nov 5, 2024
1 parent 23c809b commit d0f1992
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 d0f1992

Please sign in to comment.