12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {
- "gitRepo": {
- "description": "Code repository",
- "value": "https://github.com/Joystream/joystream.git"
- },
- "branchName": {
- "description": "Branch to deploy",
- "value": "master"
- },
- "keyName": {
- "description": "SSH key pair on AWS",
- "value": "joystream-github-action-key-new"
- },
- "numberOfValidators": {
- "description": "Number of validators to deploy",
- "value": "2"
- },
- "validatorInstanceType": {
- "description": "AWS EC2 instance type for Validators (t2.micro, t2.large)",
- "value": "t2.micro"
- },
- "buildInstanceType": {
- "description": "AWS EC2 instance type for Build Instance (t2.micro, t2.large)",
- "value": "t2.large"
- },
- "rpcInstanceType": {
- "description": "AWS EC2 instance type for RPC (t2.micro, t2.large)",
- "value": "t2.micro"
- },
- "ec2AMI": {
- "description": "Pre-built AMI ID",
- "value": "ami-0ce5f13e91397239a"
- },
- "volumeSize": {
- "description": "Validator and Build instance volume size in GB",
- "value": "120"
- },
- "rpcVolumeSize": {
- "description": "RPC Instance volume size in GB",
- "value": "120"
- },
- "networkSuffix": {
- "description": "Network suffix that will be added to the network name",
- "value": "8129"
- },
- "initialBalancesFile": {
- "description": "HTTP Link to the Initial Balances file",
- "value": ""
- },
- "initialMembersFile": {
- "description": "HTTP Link to the Initial Members file",
- "value": ""
- },
- "deploymentType": {
- "description": "Chain deployment type (live, dev etc.)",
- "value": "live"
- },
- "encryptionKey": {
- "description": "Password to encrypt the artifacts",
- "value": "password"
- },
- "runtimeProfile": {
- "description": "STAGING | PLAYGROUND| TESTING - leave empty for production",
- "value": ""
- },
- "skipChainSetup": {
- "description": "Set to true to skip running setup new chain scenario",
- "value": true
- }
- }
|