Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/partner_editable/architecture.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Deploying this Quick Start builds the following environment in the AWS Cloud.

// Replace this example diagram with your own. Send us your source PowerPoint file. Be sure to follow our guidelines here : http://(we should include these points on our contributors giude)
// Replace this example diagram with your own. Send us your source PowerPoint file. Be sure to follow our guidelines here : http://(we should include these points on our contributors guide)

:xrefstyle: short
[#architecture_diagram]
Expand Down
2 changes: 1 addition & 1 deletion functions/source/CreateSSHKey/lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def lambda_handler(event,context):
f = open('/tmp/enc_key', 'wb')
f.write(enc_key)
f.close()
# Upload priivate key to S3
# Upload private key to S3
s3 = boto3.client('s3')
s3.upload_file('/tmp/enc_key',
event["ResourceProperties"]["KeyBucket"], 'enc_key')
Expand Down
2 changes: 1 addition & 1 deletion functions/source/GitPullS3/lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def lambda_handler(event, context):
keybucket = event['context']['key-bucket']
outputbucket = event['context']['output-bucket']
pubkey = event['context']['public-key']
# Source IP ranges to allow requests from, if the IP is in one of these the request will not be chacked for an api key
# Source IP ranges to allow requests from, if the IP is in one of these the request will not be checked for an api key
ipranges = []
if event['context']['allowed-ips']:
for i in event['context']['allowed-ips'].split(','):
Expand Down