Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathconfig.example.yml
More file actions
Latest commit
25 lines (19 loc) · 818 Bytes
/
Copy pathconfig.example.yml
File metadata and controls
25 lines (19 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Example configuration for Lambda Chat
# Copy this file to `config.yml` and then set the values appropriately
# The Google OAuth Client ID
# Visit: https://console.developers.google.com/project
# To create a project, enable the Google+ API, and create an ID
# Set the Javascript Origin to the S3 bucket URL
google_oauth_client_id: TODO
# The AWS region to do everything in
region: us-east-1
# The name of the S3 bucket to use for the website
# This must be unique across all AWS accounts
s3_bucket: lambda-chat
# The S3 object key for the chat data
data_key: data.json
# The ARN of the IAM role the website will assume to be able to send messages
# using SNS
website_iam_role_arn: arn:aws:iam::TODO
# The ARN of the SNS topic to publish chat messages to, and for Lambda to read
sns_topic_arn: arn:aws:sns::TODO