diff --git a/internal/service/route53profiles/association.go b/internal/service/route53profiles/association.go index d6ad751a1d8..9b1a0d4230b 100644 --- a/internal/service/route53profiles/association.go +++ b/internal/service/route53profiles/association.go @@ -41,7 +41,7 @@ func newResourceAssociation(_ context.Context) (resource.ResourceWithConfigure, r := &resourceAssociation{} r.SetDefaultCreateTimeout(30 * time.Minute) - r.SetDefaultUpdateTimeout(30 * time.Minute) + r.SetDefaultUpdateTimeout(5 * time.Minute) // tags only r.SetDefaultDeleteTimeout(30 * time.Minute) return r, nil @@ -119,7 +119,7 @@ func (r *resourceAssociation) Schema(ctx context.Context, req resource.SchemaReq Blocks: map[string]schema.Block{ names.AttrTimeouts: timeouts.Block(ctx, timeouts.Opts{ Create: true, - Read: true, + Update: true, Delete: true, }), }, diff --git a/website/docs/r/route53profiles_association.html.markdown b/website/docs/r/route53profiles_association.html.markdown index ce7fc63526b..5aec9dee0bd 100644 --- a/website/docs/r/route53profiles_association.html.markdown +++ b/website/docs/r/route53profiles_association.html.markdown @@ -51,6 +51,7 @@ This resource exports the following attributes in addition to the arguments abov [Configuration options](https://developer.hashicorp.com/terraform/language/resources/syntax#operation-timeouts): * `create` - (Default `30m`) +* `update` - (Default `5m`) * `delete` - (Default `30m`) ## Import