Skip to content

Commit

Permalink
r/aws_cloudtrail_event_data_store: Use 'WithoutTimeout' CRUD handler …
Browse files Browse the repository at this point in the history
…signatures (hashicorp#15090).
  • Loading branch information
ewbankkit committed Feb 15, 2022
1 parent cdaa6ec commit 9638789
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/service/cloudtrail/event_data_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ import (

func ResourceEventDataStore() *schema.Resource {
return &schema.Resource{
CreateContext: resourceEventDataStoreCreate,
ReadContext: resourceEventDataStoreRead,
UpdateContext: resourceEventDataStoreUpdate,
DeleteContext: resourceEventDataStoreDelete,
CreateWithoutTimeout: resourceEventDataStoreCreate,
ReadWithoutTimeout: resourceEventDataStoreRead,
UpdateWithoutTimeout: resourceEventDataStoreUpdate,
DeleteWithoutTimeout: resourceEventDataStoreDelete,

Importer: &schema.ResourceImporter{
StateContext: schema.ImportStatePassthroughContext,
Expand Down

0 comments on commit 9638789

Please sign in to comment.