{"id":27161779,"url":"https://github.com/suquant/terrakube","last_synced_at":"2026-02-01T16:33:40.323Z","repository":{"id":145324185,"uuid":"137584994","full_name":"suquant/terrakube","owner":"suquant","description":"Terraform Kubernetes Cluster","archived":false,"fork":false,"pushed_at":"2018-06-18T16:11:40.000Z","size":16,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-14T08:39:23.149Z","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":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/suquant.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-06-16T14:06:34.000Z","updated_at":"2019-04-28T04:52:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"7dbd8559-dd2b-4343-ab02-42ca3adaa117","html_url":"https://github.com/suquant/terrakube","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/suquant/terrakube","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suquant%2Fterrakube","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suquant%2Fterrakube/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suquant%2Fterrakube/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suquant%2Fterrakube/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/suquant","download_url":"https://codeload.github.com/suquant/terrakube/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suquant%2Fterrakube/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28982826,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T16:29:42.054Z","status":"ssl_error","status_checked_at":"2026-02-01T16:29:41.428Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2025-04-09T00:57:56.391Z","updated_at":"2026-02-01T16:33:40.317Z","avatar_url":"https://github.com/suquant.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kubernetes High Availability Service\n\n## Key features\n\n* High Availability mode if master count \u003e1 \n* HA Load Balancer on each worker and master nodes if HA is active\n* Dynamic add/remove master or worker nodes\n* Preconfigured container network with security option (flannel + wireguard vpn)\n\n## Interfaces\n\n### Input variables\n\n* master_count\n* master_public_ips\n* master_private_ips\n* master_hostnames\n* worker_count\n* worker_public_ips\n* worker_private_ips\n* worker_hostnames\n* name - cluster name (default: default)\n* domain - cluster domain (default: cluster.local)\n* overlay_cidr - overlay network cidr (default: 10.244.0.0/16)\n* kubernetes_version - (default: 1.10)\n\n### Output variables\n\n* kubeconfig - amdin kubeconfig \n* api_endpoints - master api endpoints\n* master_count\n* master_public_ips\n* worker_count\n* worker_public_ips\n\n\n## Example\n\n```\nvariable \"token\" {}\nvariable \"name\" {\n  default = \"kuber\"\n}\nvariable \"master_count\" {\n  default = 3\n}\nvariable \"worker_count\" {\n  default = 3\n}\n\nprovider \"hcloud\" {\n  token = \"${var.token}\"\n}\n\nmodule \"provider_master\" {\n  source = \"git::https://github.com/suquant/tf_hcloud.git\"\n\n  count = \"${var.master_count}\"\n  token = \"${var.token}\"\n\n  name        = \"${format(\"%s-master\", var.name)}\"\n  server_type = \"cx21\"\n}\n\nmodule \"provider_worker\" {\n  source = \"git::https://github.com/suquant/tf_hcloud.git\"\n\n  count = \"${var.worker_count}\"\n  token = \"${var.token}\"\n\n  name        = \"${format(\"%s-worker\", var.name)}\"\n  ssh_names   = [\"${module.provider_master.ssh_names}\"]\n  ssh_keys    = []\n  server_type = \"cx11\"\n}\n\nmodule \"terrakube\" {\n  source = \"git::https://github.com/suquant/terrakube.git\"\n\n  name                = \"${var.name}\"\n\n  # Masters\n  master_count        = \"${var.master_count}\"\n  master_public_ips   = [\"${module.provider_master.public_ips}\"]\n  master_private_ips  = [\"${module.provider_master.private_ips}\"]\n  master_hostnames    = [\"${module.provider_master.hostnames}\"]\n\n  # Workers\n  worker_count        = \"${var.worker_count}\"\n  worker_public_ips   = [\"${module.provider_worker.public_ips}\"]\n  worker_private_ips  = [\"${module.provider_worker.private_ips}\"]\n  worker_hostnames    = [\"${module.provider_worker.hostnames}\"]\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuquant%2Fterrakube","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuquant%2Fterrakube","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuquant%2Fterrakube/lists"}