diff --git a/workshop/content/english/20-typescript/60-cleanups/_index.md b/workshop/content/english/20-typescript/60-cleanups/_index.md index 7c88a43c8..94c086b54 100644 --- a/workshop/content/english/20-typescript/60-cleanups/_index.md +++ b/workshop/content/english/20-typescript/60-cleanups/_index.md @@ -64,6 +64,12 @@ export class HitCounter extends Construct { } {{}} +Since we made a change in the construct file, we need to redeploy the stack to put the changes into effect. Use `cdk deploy`: + +``` +cdk deploy +``` + Additionally, the Lambda function created will generate CloudWatch logs that are permanently retained. These will not be tracked by CloudFormation since they are not part of the stack, so the logs will still persist. You will have to manually diff --git a/workshop/content/english/30-python/60-cleanups/_index.md b/workshop/content/english/30-python/60-cleanups/_index.md index 5fd8f918f..8cf094554 100644 --- a/workshop/content/english/30-python/60-cleanups/_index.md +++ b/workshop/content/english/30-python/60-cleanups/_index.md @@ -57,6 +57,11 @@ class HitCounter(Construct): downstream.grant_invoke(self.handler) {{}} +Since we made a change in the construct file, we need to redeploy the stack to put the changes into effect. Use `cdk deploy`: + +``` +cdk deploy +``` Additionally, the Lambda function created will generate CloudWatch logs that are permanently retained. These will not be tracked by CloudFormation since they are diff --git a/workshop/content/english/40-dotnet/60-cleanups/_index.md b/workshop/content/english/40-dotnet/60-cleanups/_index.md index 315891422..ec0e450f8 100644 --- a/workshop/content/english/40-dotnet/60-cleanups/_index.md +++ b/workshop/content/english/40-dotnet/60-cleanups/_index.md @@ -70,6 +70,12 @@ namespace CdkWorkshop } {{}} +Since we made a change in the construct file, we need to redeploy the stack to put the changes into effect. Use `cdk deploy`: + +``` +cdk deploy +``` + Additionally, the Lambda function created will generate CloudWatch logs that are permanently retained. These will not be tracked by CloudFormation since they are not part of the stack, so the logs will still persist. You will have to manually diff --git a/workshop/content/english/60-go/60-cleanups/_index.md b/workshop/content/english/60-go/60-cleanups/_index.md index 36f556f1d..b1cd1ca9d 100644 --- a/workshop/content/english/60-go/60-cleanups/_index.md +++ b/workshop/content/english/60-go/60-cleanups/_index.md @@ -76,6 +76,11 @@ func (h *hitCounter) Table() awsdynamodb.Table { {{}} +Since we made a change in the construct file, we need to redeploy the stack to put the changes into effect. Use `cdk deploy`: + +``` +cdk deploy +``` Additionally, the Lambda function created will generate CloudWatch logs that are permanently retained. These will not be tracked by CloudFormation since they are