We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 329c0bf commit 8c4d465Copy full SHA for 8c4d465
cloud/resource_pulsar_cluster.go
@@ -67,6 +67,10 @@ func resourcePulsarCluster() *schema.Resource {
67
return []*schema.ResourceData{d}, nil
68
},
69
70
+ Timeouts: &schema.ResourceTimeout{
71
+ // Pulsar clusters can take time to tear down; allow 30m to avoid spurious test failures.
72
+ Delete: schema.DefaultTimeout(30 * time.Minute),
73
+ },
74
Schema: map[string]*schema.Schema{
75
"organization": {
76
Type: schema.TypeString,
0 commit comments