From 2e661d53cfa5d96afd13379215aa49c632b385a8 Mon Sep 17 00:00:00 2001 From: Kevin DeJong Date: Fri, 2 Feb 2024 05:24:12 -0800 Subject: [PATCH] Increase timeout for update/create stack --- src/deploy.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/deploy.ts b/src/deploy.ts index 052eacf..715db9a 100644 --- a/src/deploy.ts +++ b/src/deploy.ts @@ -76,7 +76,7 @@ export async function updateStack( core.debug('Waiting for CloudFormation Change Set creation') await waitUntilChangeSetCreateComplete( - { client: cfn, maxWaitTime: 30, minDelay: 10 }, + { client: cfn, maxWaitTime: 1800, minDelay: 10 }, { ChangeSetName: params.ChangeSetName, StackName: params.StackName @@ -107,7 +107,7 @@ export async function updateStack( core.debug('Updating CloudFormation stack') await waitUntilStackUpdateComplete( - { client: cfn, maxWaitTime: 30, minDelay: 10 }, + { client: cfn, maxWaitTime: 43200, minDelay: 10 }, { StackName: params.StackName } @@ -168,7 +168,7 @@ export async function deployStack( ) await waitUntilStackCreateComplete( - { client: cfn, maxWaitTime: 30, minDelay: 10 }, + { client: cfn, maxWaitTime: 43200, minDelay: 10 }, { StackName: params.StackName }