diff --git a/README.md b/README.md index aba1f4b..d65b633 100644 --- a/README.md +++ b/README.md @@ -202,7 +202,7 @@ Thanks, @mamisano for catching a silly issue using the above 🙏 We are going to track some new features/additions here so that it is quick and easy to see what has been recently added. -- we have moved the "What's new?" to Github Discussions. Go check it out over ()[] +- we have moved the "What's new?" to Github Discussions. Go check it. - we now have the capability of sending error logs to a webhook of your choice, hopefully alerting you or your team to the failures as opposed to these errors only living in a log file. diff --git a/docker-compose-aws-logging-letsencrypt.yml b/docker-compose-aws-logging-letsencrypt.yml index 31c7d37..3ef4d6e 100644 --- a/docker-compose-aws-logging-letsencrypt.yml +++ b/docker-compose-aws-logging-letsencrypt.yml @@ -7,8 +7,8 @@ services: logging: driver: awslogs options: - awslogs-region: eu-west-1 - awslogs-group: canarytokens-dev + awslogs-region: ${CANARYTOKENS_LOGGING_REGION:-eu-west-1} + awslogs-group: ${CANARYTOKENS_LOGGING_GROUP:-canarytokens} awslogs-stream: redis frontend: extends: @@ -18,8 +18,8 @@ services: logging: driver: awslogs options: - awslogs-region: eu-west-1 - awslogs-group: canarytokens-dev + awslogs-region: ${CANARYTOKENS_LOGGING_REGION:-eu-west-1} + awslogs-group: ${CANARYTOKENS_LOGGING_GROUP:-canarytokens} awslogs-stream: frontend switchboard: extends: @@ -29,8 +29,8 @@ services: logging: driver: awslogs options: - awslogs-region: eu-west-1 - awslogs-group: canarytokens-dev + awslogs-region: ${CANARYTOKENS_LOGGING_REGION:-eu-west-1} + awslogs-group: ${CANARYTOKENS_LOGGING_GROUP:-canarytokens} awslogs-stream: switchboard nginx: extends: @@ -41,8 +41,8 @@ services: logging: driver: awslogs options: - awslogs-region: eu-west-1 - awslogs-group: canarytokens-dev + awslogs-region: ${CANARYTOKENS_LOGGING_REGION:-eu-west-1} + awslogs-group: ${CANARYTOKENS_LOGGING_GROUP:-canarytokens} awslogs-stream: nginx volumes: log-volume: diff --git a/docker-compose-aws-logging.yml b/docker-compose-aws-logging.yml index b45f080..c196b16 100644 --- a/docker-compose-aws-logging.yml +++ b/docker-compose-aws-logging.yml @@ -7,8 +7,8 @@ services: logging: driver: awslogs options: - awslogs-region: eu-west-1 - awslogs-group: canarytokens-dev + awslogs-region: ${CANARYTOKENS_LOGGING_REGION:-eu-west-1} + awslogs-group: ${CANARYTOKENS_LOGGING_GROUP:-canarytokens} awslogs-stream: redis frontend: extends: @@ -18,8 +18,8 @@ services: logging: driver: awslogs options: - awslogs-region: eu-west-1 - awslogs-group: canarytokens-dev + awslogs-region: ${CANARYTOKENS_LOGGING_REGION:-eu-west-1} + awslogs-group: ${CANARYTOKENS_LOGGING_GROUP:-canarytokens} awslogs-stream: frontend switchboard: extends: @@ -29,8 +29,8 @@ services: logging: driver: awslogs options: - awslogs-region: eu-west-1 - awslogs-group: canarytokens-dev + awslogs-region: ${CANARYTOKENS_LOGGING_REGION:-eu-west-1} + awslogs-group: ${CANARYTOKENS_LOGGING_GROUP:-canarytokens} awslogs-stream: switchboard nginx: extends: @@ -39,8 +39,8 @@ services: logging: driver: awslogs options: - awslogs-region: eu-west-1 - awslogs-group: canarytokens-dev + awslogs-region: ${CANARYTOKENS_LOGGING_REGION:-eu-west-1} + awslogs-group: ${CANARYTOKENS_LOGGING_GROUP:-canarytokens} awslogs-stream: nginx volumes: log-volume: