Skip to content

Commit

Permalink
fix: new s3 bucket created on each cf deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
kakha urigashvili authored and RonWang committed Oct 30, 2020
1 parent c4d59f4 commit b495be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/builtins/deploy-delegates/cfn-deployer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async function _deploy(reporter, options, deployProgress) {
const awsRegion = _getAwsRegion(alexaRegion, userConfig);
const templateBody = _getTemplateBody(alexaRegion, userConfig);
const userDefinedParameters = _getUserDefinedParameters(alexaRegion, userConfig);
const bucketName = _getS3BucketName(alexaRegion, userConfig, deployProgress.deployState[alexaRegion], awsProfile, awsRegion);
const bucketName = _getS3BucketName(alexaRegion, userConfig, deployProgress.deployState, awsProfile, awsRegion);
const bucketKey = _getS3BucketKey(alexaRegion, userConfig, code.codeBuild);
const stackName = `ask-${skillName}-${alexaRegion}-skillStack-${Date.now()}`;

Expand Down

0 comments on commit b495be8

Please sign in to comment.