Skip to content

Commit

Permalink
Add 24 hour timeout for cluster creation (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
egor-georgiev authored Aug 2, 2022
1 parent 552b8b4 commit b80ed90
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ccloud/resource_kafka_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ func kafkaClusterResource() *schema.Resource {
Importer: &schema.ResourceImporter{
StateContext: clusterImport,
},
Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(24 * 60 * time.Minute),
},
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Expand Down

0 comments on commit b80ed90

Please sign in to comment.