mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-04 04:08:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			456 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			456 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
- name: Include dependencies
 | 
						|
  include_role:
 | 
						|
    name: '{{ item }}'
 | 
						|
  loop:
 | 
						|
  - sys-stk-front-pure
 | 
						|
  - dev-git
 | 
						|
  
 | 
						|
- name: "include role for {{ application_id }} to receive certs & do modification routines"
 | 
						|
  include_role:
 | 
						|
    name: sys-util-csp-cert
 | 
						|
  vars:
 | 
						|
    http_port: "{{ ports.localhost.http[application_id] }}"
 | 
						|
 | 
						|
- name: "deploy '{{ CDN_NGINX_PATH }}'"
 | 
						|
  template:
 | 
						|
    src: "nginx.conf.j2"
 | 
						|
    dest: "{{ CDN_NGINX_PATH }}"
 | 
						|
  notify: restart openresty |