forked from CCCHH/ansible-infra
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			922 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			922 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| argument_specs:
 | |
|   main:
 | |
|     options:
 | |
|       mosquitto__mosquitto_conf_content:
 | |
|         description: The content of the main mosquitto configuration file.
 | |
|         type: str
 | |
|         required: true
 | |
|       mosquitto__configs:
 | |
|         description: A list of additional mosquitto configurations.
 | |
|         type: list
 | |
|         elements: dict
 | |
|         required: false
 | |
|         options:
 | |
|           name:
 | |
|             description: >-
 | |
|               The name of the configuration file, where the configuration should
 | |
|               be deployed to. The file will be placed under `/etc/mosquitto/conf.d` and
 | |
|               `.conf` will be appended to the given name. So in the end the path
 | |
|               will be like this: `/etc/mosquitto/conf.d/\{\ name \}\}.conf`.
 | |
|             type: str
 | |
|             required: true
 | |
|           content:
 | |
|             description: The content of the configuration.
 | |
|             type: str
 | |
|             required: true
 |