{"id":18639090,"url":"https://github.com/zseta/scylladb-tablet-demo","last_synced_at":"2026-02-28T11:02:08.853Z","repository":{"id":249582786,"uuid":"831912834","full_name":"zseta/scylladb-tablet-demo","owner":"zseta","description":null,"archived":false,"fork":false,"pushed_at":"2024-07-22T19:33:44.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-03T18:59:07.156Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zseta.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"security-group.tf","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-22T01:01:48.000Z","updated_at":"2024-07-22T19:33:47.000Z","dependencies_parsed_at":"2024-11-07T05:45:03.434Z","dependency_job_id":"a2e1f2cc-f605-4545-9435-17f0c0a1f071","html_url":"https://github.com/zseta/scylladb-tablet-demo","commit_stats":null,"previous_names":["zseta/scylladb-tablet-demo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zseta/scylladb-tablet-demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zseta%2Fscylladb-tablet-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zseta%2Fscylladb-tablet-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zseta%2Fscylladb-tablet-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zseta%2Fscylladb-tablet-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zseta","download_url":"https://codeload.github.com/zseta/scylladb-tablet-demo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zseta%2Fscylladb-tablet-demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000741,"owners_count":26082932,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T05:45:01.423Z","updated_at":"2025-10-09T05:41:39.681Z","avatar_url":"https://github.com/zseta.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ScyllaDB Tablets demo\nThis ScyllaDB demo shows you how ScyllaDB handles high workload while scaling out from 3 nodes to 6 nodes.\n\n## Infrastructure elements\n* Amazon Web Services (AWS) EC2 instances\n\n## Prerequisites\n* AWS account and CLI credentials (more information on acquiring the credentials [here](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html) and [here](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html), for OKTA you can use [gimme-aws-creds](https://github.com/Nike-Inc/gimme-aws-creds))\n* Terraform installed on your machine (installation instructions [here](https://developer.hashicorp.com/terraform/tutorials/aws-get-started/install-cli))\n\n### AWS permissions\nMake sure that you have sufficient AWS permissions to create the following items:\n* VPC\n* Subnets\n* Security groups\n* EC2 instances\n\n\n## Get started\nClone the repository:\n```\ngit clone \u003crepo\u003e\ncd repo/\n```\n\nFirst, set the required items in `variables.tf`:\n```terraform\n#\n# Set the following variables (mandatory)\n#\n\n# ScyllaDB Cloud API token\nvariable \"scylla_cloud_token\" {\n  description = \"ScyllaDB Cloud API token\"\n  type        = string\n  default     = \"ADD-YOUR-API-TOKEN-HERE\"\n}\n\n# ScyllaDB Cloud region\nvariable \"scylla_cloud_region\" {\n  description = \"ScyllaDB Cloud region of the cluster\"\n  type        = string\n  default     = \"eu-north-1\"\n}\n\n# SSH private key for EC2 instance access\nvariable \"ssh_private_key\" {\n  description = \"SSH private key location for EC2 instance access\"\n  type        = string\n  default     = \"/home/user/Documents/your-private-key.pem\"\n}\n\nvariable \"aws_key_pair\" {\n  description = \"Key pair name in AWS\"\n  type        = string\n  default     = \"my-key-pair\"\n}\n\n# AWS credentials file\nvariable \"aws_creds\" {\n  description = \"AWS credentials location\"\n  type        = string\n  default     = \"/home/user/.aws/credentials\"\n}\n```\n\nStart setting up infrastructure with Terraform:\n```bash\nterraform init\nterraform plan\nterraform apply\n\nDo you want to perform these actions?\n  Terraform will perform the actions described above.\n  Only 'yes' will be accepted to approve.\n\n  Enter a value: yes\n\n[...]\n\nApply complete! Resources: 23 added, 0 changed, 0 destroyed.\n```\n\nSetting up the infrastructure takes YX minutes. Once Terraform is finished do X Y Z\n\n\nAfter finishing the demo, destroy the infrastructure:\n```\nterraform destroy\n```\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzseta%2Fscylladb-tablet-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzseta%2Fscylladb-tablet-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzseta%2Fscylladb-tablet-demo/lists"}