Skip to content

Commit b80ed90

Browse files
Add 24 hour timeout for cluster creation (#135)
1 parent 552b8b4 commit b80ed90

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

ccloud/resource_kafka_cluster.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ func kafkaClusterResource() *schema.Resource {
2222
Importer: &schema.ResourceImporter{
2323
StateContext: clusterImport,
2424
},
25+
Timeouts: &schema.ResourceTimeout{
26+
Create: schema.DefaultTimeout(24 * 60 * time.Minute),
27+
},
2528
Schema: map[string]*schema.Schema{
2629
"name": {
2730
Type: schema.TypeString,

0 commit comments

Comments
 (0)