This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "devices": { | |
| "Q2AX-CSJW-JVYH": { | |
| "device": { | |
| "lat": 37.4180951010362, | |
| "lng": -122.098531723022, | |
| "address": "", | |
| "serial": "Q2AX-CSJW-JVYH", | |
| "mac": "0c:8d:db:03:76:dc", | |
| "lanIp": "192.168.23.44", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "devices": { | |
| "Q2AX-CSJW-JVYH": { | |
| "device": { | |
| "lat": 37.4180951010362, | |
| "lng": -122.098531723022, | |
| "address": "", | |
| "serial": "Q2AX-CSJW-JVYH", | |
| "mac": "0c:8d:db:03:76:dc", | |
| "lanIp": "192.168.23.44", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "interfaces": { | |
| "wan1": { | |
| "enabled": true, | |
| "svis": { | |
| "ipv4": { | |
| "assignmentMode": "dynamic" | |
| }, | |
| "ipv6": { | |
| "assignmentMode": "dynamic" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "interfaces": { | |
| "wan1": { | |
| "enabled": false, | |
| "vlanTagging": { | |
| "enabled": true, | |
| "vlanId": 835 | |
| }, | |
| "svis": { | |
| "ipv4": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "uplink_settings": [ | |
| { | |
| "static_ip_enabled": true, | |
| "static_ip": "167.98.164.132", | |
| "static_netmask": "255.255.255.240", | |
| "static_gateway": "167.98.164.129", | |
| "static_dns1": "8.8.8.8", | |
| "static_dns2": "8.8.4.4", | |
| "static_vlan": null, |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0 verbose cli [ | |
| 0 verbose cli '/usr/local/Cellar/node/17.0.1/bin/node', | |
| 0 verbose cli '/usr/local/bin/npm', | |
| 0 verbose cli 'install' | |
| 0 verbose cli ] | |
| 1 info using [email protected] | |
| 2 info using [email protected] | |
| 3 timing npm:load:whichnode Completed in 0ms | |
| 4 timing config:load:defaults Completed in 1ms | |
| 5 timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 3ms |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: 0.0 | |
| os: linux | |
| files: | |
| - source: / | |
| destination: /var/app/boundless-syslog-server | |
| permissions: | |
| - object: /var/app | |
| owner: ec2-user | |
| group: ec2-user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo $(date) > application/VERSION | |
| rm -f application.zip | |
| zip -r application.zip application/ | |
| aws s3 cp application.zip s3://boundless-dev-eu-west-1-codepipeline-syslog-pipeline/syslog-server/application.zip --profile boundless-development |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "ResourceTagMappingList": [ | |
| { | |
| "ResourceARN": "arn:aws:sns:eu-west-1:942189704687:boundless-dev-infrastructure-syslog-pipeline-BoundlessDevSyslogServerAutoScalingGroupSNSTopic-13ZPLQ7K2JYBH", | |
| "Tags": [ | |
| { | |
| "Key": "Environment", | |
| "Value": "development" | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: "\n Creates server autoscaling groups for syslog servers, S3 buckets\ | |
| \ for storage, and dyanmoDB tables for caching. Also logmanagement\n " | |
| Resources: | |
| SyslogBucket: | |
| Properties: | |
| BucketEncryption: | |
| ServerSideEncryptionConfiguration: | |
| - ServerSideEncryptionByDefault: | |
| SSEAlgorithm: AES256 |