{"id":20049745,"url":"https://github.com/scriptkitties/ansible-tinc","last_synced_at":"2026-05-01T22:35:30.097Z","repository":{"id":80058500,"uuid":"90752292","full_name":"scriptkitties/ansible-tinc","owner":"scriptkitties","description":"An ansible role for installing tinc","archived":false,"fork":false,"pushed_at":"2017-05-09T16:53:30.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-02T08:29:23.223Z","etag":null,"topics":["ansible","ansible-role","tinc"],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/scriptkitties.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":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-09T14:01:17.000Z","updated_at":"2017-05-09T14:02:23.000Z","dependencies_parsed_at":"2023-04-11T04:35:41.838Z","dependency_job_id":null,"html_url":"https://github.com/scriptkitties/ansible-tinc","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/scriptkitties/ansible-tinc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fansible-tinc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fansible-tinc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fansible-tinc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fansible-tinc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scriptkitties","download_url":"https://codeload.github.com/scriptkitties/ansible-tinc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scriptkitties%2Fansible-tinc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32515838,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["ansible","ansible-role","tinc"],"created_at":"2024-11-13T11:52:10.210Z","updated_at":"2026-05-01T22:35:30.080Z","avatar_url":"https://github.com/scriptkitties.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ansible-tinc\nA role for Ansible to setup [tinc][tinc].\n\n## Usage\nThe example playbook below should be pretty self explanatory. The `name` key is\noptional for nodes. Setting this key makes the `name` key as the name to refer\nto the node in tinc. If left empty, the short hostname will be used, which is\nalso used as the key.\n\nThe `master` key is technically optional as well, but in order to have a\nfunctional tinc network, you need at least one of these. The nodes that have a\n`master` key will be used in the `ConnectTo` directives of the tinc\nconfiguration.\n\n### Example playbook\n```yaml\n---\n- hosts: all\n  vars:\n    network:\n      name: tincnet\n      cidr: 10.0.1.0/24\n      nodes:\n        alpha:\n          ip: 10.0.1.1\n          rsa: |\n            MIIBCgKCAQEAuS2aZQZoVBF33AJEQQItlHgH4rg4tbA8OriJcOq9kZ/xvr53k5q4\n            zubunvfkf4Bnwq4LLFDbXpOjKWjG2uZya+BTAwhyXkIcYdcf7JRv6EPmOM3G2p2q\n            zBSc65b92S0waEhlkI8QwpRL6C8JXQ5sAByrJYInAFbhVuRJoa5GRpUUH97Owix0\n            uX8zbfUFfjlGuhqpiHD+2wn9zShAWrz7TYLBIBvAtVoXr8Yx7uaVi5Ramjye0aCM\n            /iijMYX4FhjXRF6X4nYOPuYDI/we+I3QuBLv69vgYQm3ITM6WeqkwP+pV45dqx98\n            ozkzqs1p5lESUkNgOrnCK4IOJ3tIY/+deQIDAQAB\n        beta:\n          name: web1\n          ip: 10.0.1.2\n          rsa: |\n            MIIBCgKCAQEAuS2aZQZoVBF33AJEQQItlHgH4rg4tbA8OriJcOq9kZ/xvr53k5q4\n            zubunvfkf4Bnwq4LLFDbXpOjKWjG2uZya+BTAwhyXkIcYdcf7JRv6EPmOM3G2p2q\n            zBSc65b92S0waEhlkI8QwpRL6C8JXQ5sAByrJYInAFbhVuRJoa5GRpUUH97Owix0\n            uX8zbfUFfjlGuhqpiHD+2wn9zShAWrz7TYLBIBvAtVoXr8Yx7uaVi5Ramjye0aCM\n            /iijMYX4FhjXRF6X4nYOPuYDI/we+I3QuBLv69vgYQm3ITM6WeqkwP+pV45dqx98\n            ozkzqs1p5lESUkNgOrnCK4IOJ3tIY/+deQIDAQAB\n          ed25519: j28lWmpvjfAPgYh3+VjxLmWQSOLJyz4ynNGeGlwNc1s\n        gamma:\n          ip: 10.0.1.3\n          master: true\n          rsa: |\n            MIIBCgKCAQEAuS2aZQZoVBF33AJEQQItlHgH4rg4tbA8OriJcOq9kZ/xvr53k5q4\n            zubunvfkf4Bnwq4LLFDbXpOjKWjG2uZya+BTAwhyXkIcYdcf7JRv6EPmOM3G2p2q\n            zBSc65b92S0waEhlkI8QwpRL6C8JXQ5sAByrJYInAFbhVuRJoa5GRpUUH97Owix0\n            uX8zbfUFfjlGuhqpiHD+2wn9zShAWrz7TYLBIBvAtVoXr8Yx7uaVi5Ramjye0aCM\n            /iijMYX4FhjXRF6X4nYOPuYDI/we+I3QuBLv69vgYQm3ITM6WeqkwP+pV45dqx98\n            ozkzqs1p5lESUkNgOrnCK4IOJ3tIY/+deQIDAQAB\n  roles:\n    - tinc\n```\n\n## Todo\n- Add the new network to the network list to autostart\n- Remove unused files in the `hosts` directory\n\n## License\n\n[tinc]: https://www.tinc-vpn.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscriptkitties%2Fansible-tinc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscriptkitties%2Fansible-tinc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscriptkitties%2Fansible-tinc/lists"}