mirror of
				https://github.com/geerlingguy/ansible-role-certbot.git
				synced 2025-10-31 07:33:53 +01:00 
			
		
		
		
	This was introduced in 5a23e85f1cebfbc3999d896f25b99a8c2776f808 but no default was added, resulting in a 'undefined variable' error
		
			
				
	
	
		
			64 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| # Certbot auto-renew cron job configuration (for certificate renewals).
 | |
| certbot_auto_renew: true
 | |
| certbot_auto_renew_user: "{{ ansible_user | default(lookup('env', 'USER')) }}"
 | |
| certbot_auto_renew_hour: "3"
 | |
| certbot_auto_renew_minute: "30"
 | |
| certbot_auto_renew_options: "--quiet"
 | |
| 
 | |
| certbot_testmode: false
 | |
| certbot_hsts: false
 | |
| 
 | |
| 
 | |
| # Parameters used when creating new Certbot certs.
 | |
| certbot_create_if_missing: false
 | |
| certbot_create_method: standalone
 | |
| certbot_admin_email: email@example.com
 | |
| 
 | |
| # Default webroot, overwritten by individual per-cert webroot directories
 | |
| certbot_webroot: /var/www/letsencrypt
 | |
| 
 | |
| certbot_certs: []
 | |
| # - email: janedoe@example.com
 | |
| #   webroot: "/var/www/html/"
 | |
| #   domains:
 | |
| #     - example1.com
 | |
| #     - example2.com
 | |
| # - domains:
 | |
| #     - example3.com
 | |
| 
 | |
| certbot_create_extra_args: ""
 | |
| 
 | |
| certbot_create_command: >-
 | |
|   {{ certbot_script }} certonly --{{ certbot_create_method  }}
 | |
|   {{ '--hsts' if certbot_hsts else '' }}
 | |
|   {{ '--test-cert' if certbot_testmode else '' }}
 | |
|   --noninteractive --agree-tos
 | |
|   --email {{ cert_item.email | default(certbot_admin_email) }}
 | |
|   {{ '--webroot-path ' if certbot_create_method == 'webroot'  else '' }}
 | |
|   {{ cert_item.webroot | default(certbot_webroot) if certbot_create_method == 'webroot' else '' }}
 | |
|   {{ certbot_create_extra_args }}
 | |
|   -d {{ cert_item.domains | join(',') }}
 | |
|   {{ '--pre-hook /etc/letsencrypt/renewal-hooks/pre/stop_services'
 | |
|     if certbot_create_standalone_stop_services and certbot_create_method == 'standalone'
 | |
|   else '' }}
 | |
|   {{ '--post-hook /etc/letsencrypt/renewal-hooks/post/start_services'
 | |
|     if certbot_create_standalone_stop_services and certbot_create_method == 'standalone'
 | |
|   else '' }}
 | |
| 
 | |
| certbot_create_standalone_stop_services:
 | |
|   - nginx
 | |
|   # - apache
 | |
|   # - varnish
 | |
| 
 | |
| # Available options: 'package', 'snap', 'source'.
 | |
| certbot_install_method: 'package'
 | |
| 
 | |
| # Source install configuration.
 | |
| certbot_repo: https://github.com/certbot/certbot.git
 | |
| certbot_version: master
 | |
| certbot_keep_updated: true
 | |
| 
 | |
| # Where to put Certbot when installing from source.
 | |
| certbot_dir: /opt/certbot
 | 
