Skip to content

Commit

Permalink
r/aws_ec2_network_insights_path: Use 'WithoutTimeout' CRUD handler si…
Browse files Browse the repository at this point in the history
…gnatures (hashicorp#15090).
  • Loading branch information
ewbankkit committed Mar 1, 2022
1 parent 730e523 commit 4ffdafa
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions internal/service/ec2/network_insights_path.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ import (

func ResourceNetworkInsightsPath() *schema.Resource {
return &schema.Resource{
CreateContext: resourceNetworkInsightsPathCreate,
ReadContext: resourceNetworkInsightsPathRead,
UpdateContext: resourceNetworkInsightsPathUpdate,
DeleteContext: resourceNetworkInsightsPathDelete,
CreateWithoutTimeout: resourceNetworkInsightsPathCreate,
ReadWithoutTimeout: resourceNetworkInsightsPathRead,
UpdateWithoutTimeout: resourceNetworkInsightsPathUpdate,
DeleteWithoutTimeout: resourceNetworkInsightsPathDelete,

Importer: &schema.ResourceImporter{
StateContext: schema.ImportStatePassthroughContext,
},
Expand Down Expand Up @@ -70,9 +71,7 @@ func ResourceNetworkInsightsPath() *schema.Resource {
"tags_all": tftags.TagsSchemaComputed(),
},

CustomizeDiff: customdiff.Sequence(
verify.SetTagsDiff,
),
CustomizeDiff: verify.SetTagsDiff,
}
}

Expand Down

0 comments on commit 4ffdafa

Please sign in to comment.