prune dead code

This commit is contained in:
Alex Schoof
2021-08-30 08:59:25 -04:00
parent f14c3b6b3a
commit 69ff7aba6e
2 changed files with 1 additions and 1 deletions

View File

@@ -52,6 +52,7 @@ No. Maybe it will in the future. Right now it's lncli and bos only.
- use an elastic-ip for the node - use an elastic-ip for the node
- would be cool to do a 1/1 autoscaling group, but need to make sure channel backup is SOLID - would be cool to do a 1/1 autoscaling group, but need to make sure channel backup is SOLID
- second instance for a watchtower - second instance for a watchtower
- use ec2 instance-connect instead of the ssh key
## Credits ## Credits
Most of the lnd.conf and the systemd unit script were cribbed from Alex Bosworth's run-lnd repo (https://github.com/alexbosworth/run-lnd) Most of the lnd.conf and the systemd unit script were cribbed from Alex Bosworth's run-lnd repo (https://github.com/alexbosworth/run-lnd)

View File

@@ -25,7 +25,6 @@ export class LightningNode extends cdk.Stack {
name: 'cdk-keypair', name: 'cdk-keypair',
description: 'Key Pair created with CDK Deployment', description: 'Key Pair created with CDK Deployment',
}); });
key.grantReadOnPublicKey
// Security groups. I made three different ones because adding/removing SGs from instances // Security groups. I made three different ones because adding/removing SGs from instances
// is easier to do through automation than changing rules on a single SG. // is easier to do through automation than changing rules on a single SG.