deploy-node-network-inputs.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "gitRepo": {
  3. "description": "Code repository",
  4. "value": "https://github.com/Joystream/joystream.git"
  5. },
  6. "branchName": {
  7. "description": "Branch to deploy",
  8. "value": "master"
  9. },
  10. "keyName": {
  11. "description": "SSH key pair on AWS",
  12. "value": "joystream-github-action-key"
  13. },
  14. "numberOfValidators": {
  15. "description": "Number of validators to deploy",
  16. "value": "2"
  17. },
  18. "validatorInstanceType": {
  19. "description": "AWS EC2 instance type for Validators (t2.micro, t2.large)",
  20. "value": "t2.micro"
  21. },
  22. "buildInstanceType": {
  23. "description": "AWS EC2 instance type for Build Instance (t2.micro, t2.large)",
  24. "value": "t2.large"
  25. },
  26. "rpcInstanceType": {
  27. "description": "AWS EC2 instance type for RPC (t2.micro, t2.large)",
  28. "value": "t2.micro"
  29. },
  30. "ec2AMI": {
  31. "description": "Pre-built AMI ID (ami-0090c9c49dc765fbb)",
  32. "value": "ami-0090c9c49dc765fbb"
  33. },
  34. "networkSuffix": {
  35. "description": "Network suffix that will be added to the network name",
  36. "value": "8129"
  37. },
  38. "initialBalancesFile": {
  39. "description": "HTTP Link to the Initial Balances file",
  40. "value": ""
  41. },
  42. "initialMembersFile": {
  43. "description": "HTTP Link to the Initial Members file",
  44. "value": ""
  45. }
  46. }