|
Parameters: |
|
EthRpcUrlParameter: |
|
Type: String |
|
|
|
Mappings: |
|
RegionToAmi: # https://cloud-images.ubuntu.com/locator/ec2/ (Jammy Jellyfish, 22.04 LTS, amd64, hvm:ebs-ssd, hvm) |
|
sa-east-1: |
|
AMI: ami-09d1da851644cd52f |
|
ap-east-1: |
|
AMI: ami-0f4ab4f13f3b9401b |
|
us-west-1: |
|
AMI: ami-0762f1d7b8fd82833 |
|
eu-central-1: |
|
AMI: ami-050096f31d010b533 |
|
us-east-1: |
|
AMI: ami-0fd2c44049dd805b8 |
|
af-south-1: |
|
AMI: ami-0502013bf0f0b5012 |
|
eu-south-1: |
|
AMI: ami-0fedfdb58a837c2fe |
|
me-south-1: |
|
AMI: ami-02c6f8935eb889e98 |
|
ca-central-1: |
|
AMI: ami-0f6d54280d9fa2b0c |
|
cn-north-1: |
|
AMI: ami-05739266c542f05d5 |
|
eu-west-1: |
|
AMI: ami-0f9ae27ecf629cbe3 |
|
eu-north-1: |
|
AMI: ami-0b13cbe982c367b75 |
|
ap-south-1: |
|
AMI: ami-0912cd2fb490de15d |
|
cn-northwest-1: |
|
AMI: ami-04c77a27ae5156100 |
|
me-central-1: |
|
AMI: ami-04be4fee4051bf815 |
|
ap-southeast-1: |
|
AMI: ami-0434196a03595d088 |
|
ap-northeast-1: |
|
AMI: ami-00fc5946ba8411dd2 |
|
|
|
Resources: |
|
HubbleSecurityGroup: |
|
Type: AWS::EC2::SecurityGroup |
|
Properties: |
|
GroupDescription: Open SSH and Farcaster inbound ports for all clients |
|
SecurityGroupIngress: |
|
- IpProtocol: tcp |
|
FromPort: 22 |
|
ToPort: 22 |
|
CidrIp: 0.0.0.0/0 |
|
- IpProtocol: tcp |
|
FromPort: 2282 |
|
ToPort: 2282 |
|
CidrIp: 0.0.0.0/0 |
|
- IpProtocol: tcp |
|
FromPort: 2283 |
|
ToPort: 2283 |
|
CidrIp: 0.0.0.0/0 |
|
HubbleKeyPair: |
|
Type: AWS::EC2::KeyPair |
|
Properties: |
|
KeyName: HubbleKeyPair |
|
HubbleEc2Instance: |
|
Type: AWS::EC2::Instance |
|
Properties: |
|
ImageId: !FindInMap [RegionToAmi, !Ref "AWS::Region", AMI] |
|
InstanceType: m5.large |
|
SecurityGroupIds: |
|
- !GetAtt HubbleSecurityGroup.GroupId |
|
KeyName: |
|
Ref: HubbleKeyPair |
|
BlockDeviceMappings: |
|
- DeviceName: "/dev/sdm" |
|
Ebs: |
|
VolumeType: gp3 |
|
DeleteOnTermination: 'false' |
|
VolumeSize: '20' |
|
UserData: |
|
Fn::Base64: |
|
!Sub | |
|
#!/bin/bash |
|
|
|
# General |
|
apt -y update |
|
apt -y install jq tmux git |
|
|
|
# Hubble User |
|
useradd -m -s /bin/bash hubble |
|
chown hubble:hubble /home/hubble |
|
|
|
# Hub Dependencies and Startup |
|
sudo -u hubble bash -c ' |
|
# Node Dependencies |
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash |
|
export NVM_DIR="$HOME/.nvm" |
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" |
|
source $HOME/.nvm/nvm.sh |
|
nvm install 18.7.0 |
|
npm install -g yarn pm2 |
|
|
|
# Hubble Setup |
|
git clone https://github.com/farcasterxyz/hubble.git $HOME/hubble |
|
cd $HOME/hubble && yarn install && yarn build |
|
cd $HOME/hubble/apps/hubble/ && yarn identity create |
|
yarn install |
|
|
|
# Start Hub |
|
export ETH_RPC_URL=${EthRpcUrlParameter} |
|
pm2 start "yarn start -e $ETH_RPC_URL -b \"/dns/testnet1.farcaster.xyz/tcp/2282\" -n 2" --name hubble' |
|
|
|
Outputs: |
|
PublicIp: |
|
Value: !GetAtt HubbleEc2Instance.PublicIp |
|
Description: Public IP of Farcaster hub. |