Skip to content

Commit 9232c77

Browse files
author
Yuriy Bezsonov
committed
WIP
1 parent 5f28b56 commit 9232c77

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.kiro/specs/infra/deployment-guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ TEMPLATE_TYPE=java-on-aws npm run generate
88

99
## Deploy Stack
1010
```bash
11+
# Deploy stack (uses existing S3 bucket for large templates)
1112
aws cloudformation deploy \
1213
--template-file cfn/java-on-aws-stack.yaml \
1314
--stack-name workshop-stack \
14-
--capabilities CAPABILITY_IAM \
15-
--parameter-overrides \
16-
ParameterKey=ParameterName,ParameterValue=Value
15+
--capabilities CAPABILITY_IAM CAPABILITY_NAMED_IAM \
16+
--s3-bucket workshop-cfn-templates-1765640257
1717
```
1818

1919
## Test & Debug

infra/scripts/lib/wait-for-resources.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Resource readiness checking utilities
4-
source "$(dirname "$0")/common.sh"
4+
source "$(dirname "${BASH_SOURCE[0]}")/common.sh"
55

66
# Wait for CloudFormation stack to be in CREATE_COMPLETE or UPDATE_COMPLETE state
77
wait_for_stack() {

0 commit comments

Comments
 (0)