{"id":16782046,"url":"https://github.com/wtanaka/ansible-role-certbot","last_synced_at":"2025-08-01T17:39:09.550Z","repository":{"id":66620447,"uuid":"71627099","full_name":"wtanaka/ansible-role-certbot","owner":"wtanaka","description":"Ansible role to install certbot","archived":false,"fork":false,"pushed_at":"2019-09-24T18:50:30.000Z","size":28,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-10T21:36:48.438Z","etag":null,"topics":["ansible","ansible-galaxy","ansible-role","ansible-roles","certbot","galaxy","https","letsencrypt","letsencrypt-utils","security"],"latest_commit_sha":null,"homepage":null,"language":null,"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/wtanaka.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":"2016-10-22T08:37:22.000Z","updated_at":"2023-02-10T12:24:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"f8faa665-a230-45ac-a09a-a959e82d130c","html_url":"https://github.com/wtanaka/ansible-role-certbot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wtanaka/ansible-role-certbot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wtanaka%2Fansible-role-certbot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wtanaka%2Fansible-role-certbot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wtanaka%2Fansible-role-certbot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wtanaka%2Fansible-role-certbot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wtanaka","download_url":"https://codeload.github.com/wtanaka/ansible-role-certbot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wtanaka%2Fansible-role-certbot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268269563,"owners_count":24223275,"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-08-01T02:00:08.611Z","response_time":67,"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-galaxy","ansible-role","ansible-roles","certbot","galaxy","https","letsencrypt","letsencrypt-utils","security"],"created_at":"2024-10-13T07:44:19.470Z","updated_at":"2025-08-01T17:39:09.523Z","avatar_url":"https://github.com/wtanaka.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/wtanaka/ansible-role-certbot.svg?branch=master)](https://travis-ci.org/wtanaka/ansible-role-certbot)\n[![CircleCI](https://circleci.com/gh/wtanaka/ansible-role-certbot.svg?style=svg)](https://circleci.com/gh/wtanaka/ansible-role-certbot)\n\nwtanaka.certbot\n===============\n\nInstalls certbot command line tools for the letsencrypt certificate\nauthority\n\nExample Playbook\n----------------\n\n    - hosts: servers\n      roles:\n         - role: wtanaka.certbot\n           # Read the TOS then uncomment this\n           # letsencrypt_agree_tos: --agree-tos\n           letsencrypt_email: example@example.com\n           letsencrypt_webroot: /var/www/html\n           # Uncomment to renew on every run (by default waits till 30\n           # days till expiration)\n           # letsencrypt_renew_by_default: --renew-by-default\n           letsencrypt_domains:\n           - wtanaka.com\n           - www.wtanaka.com\n\n\nOr you can include just the role, and configure it in\n\n    PLAYBOOK\n    - hosts: servers\n      roles:\n         - wtanaka.certbot\n\n    HOST_VARS file:\n\n    # Read the TOS then uncomment this\n    # letsencrypt_agree_tos: --agree-tos\n    letsencrypt_email: example@example.com\n    letsencrypt_webroot: /var/www/html\n    # Uncomment to renew on every run (by default waits till 30\n    # days till expiration)\n    # letsencrypt_renew_by_default: --renew-by-default\n    letsencrypt_domains:\n    - wtanaka.com\n    - www.wtanaka.com\n\n### `letsencrypt_should_shortcircuit`\n\nDefault: True\n\nWhen True, this role short-circuits itself if\n``{{letsencrypt_binary}}`` is already in the path\n\n### `letsencrypt_fake_key`\n\nSet to `True` in order to disable executing certbot and install a\nself-signed key in each of the `letsencrypt_domains` directories.\nNothing will be installed if `letsencrypt_domains` is empty\n\nFor example, this could be used in an integration test environment or\nin a testing or staging environment.\n\n### `letsencrypt_domains`\n\nThis is a list of domain names to pass to certbot.\n\nExample:\n\n```\nletsencrypt_domains:\n- wtanaka.com\n- www.wtanaka.com\n```\n\nSetting this to an empty list will disable executing certbot:\n\n```\nletsencrypt_domains: []\n```\n\n### `letsencrypt_reload_webserver_action`\n\nSet this to the service that, when reloaded, will re-read your\nwebserver configuration files.\n\nFor example:\n\n```\nletsencrypt_reload_service: nginx\n```\n\nThe full set of configuration options available are visible in\n[defaults/main.yml](defaults/main.yml)\n\nLicense\n-------\n\nGPLv2\n\nAuthor Information\n------------------\n\nhttp://wtanaka.com/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwtanaka%2Fansible-role-certbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwtanaka%2Fansible-role-certbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwtanaka%2Fansible-role-certbot/lists"}