From 3837de7f948aea6a0bb46d639f828fd639fa9efd Mon Sep 17 00:00:00 2001 From: Bigad Soleiman Date: Thu, 8 Feb 2024 11:46:10 +0000 Subject: [PATCH] Update comments --- docs/documentation/private-chatbot.md | 4 ++-- lib/user-interface/private-website.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/documentation/private-chatbot.md b/docs/documentation/private-chatbot.md index e074c5903..49c7f9e53 100644 --- a/docs/documentation/private-chatbot.md +++ b/docs/documentation/private-chatbot.md @@ -1,6 +1,6 @@ # Private Chatbot -Allows the deployment of a private chatbot via the 'npm run create' CLI setup. +Allows the deployment of a private chatbot via the 'npm run config' CLI setup. - VPC only accessible website with an Application Load Balancer in front of an S3 hosted website. - Private Appsync APIs and Web Sockets @@ -13,7 +13,7 @@ Allows the deployment of a private chatbot via the 'npm run create' CLI setup. 1. [AWS Private CA issued ACM certificate](https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-request-private.html) for your chosen domain. (i.e. chatbot.example.org) 2. A Route 53 [Private Hosted Zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/hosted-zones-private.html) (i.e. for example.org) -### During 'npm run create' +### During 'npm run config' ```shellsession $ ✔ Do you want to deploy a private website? I.e only accessible in VPC (Y/n) · true diff --git a/lib/user-interface/private-website.ts b/lib/user-interface/private-website.ts index e07a2d26d..c5ef5ac40 100644 --- a/lib/user-interface/private-website.ts +++ b/lib/user-interface/private-website.ts @@ -32,7 +32,7 @@ export class PrivateWebsite extends Construct { // PRIVATE WEBSITE // REQUIRES: - // 1. ACM Certificate ARN and Domain of website to be input during 'npm run create': + // 1. ACM Certificate ARN and Domain of website to be input during 'npm run config': // "privateWebsite" : true, // "certificate" : "arn:aws:acm:ap-southeast-2:1234567890:certificate/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXX", // "domain" : "sub.example.com"