27 lines
		
	
	
		
			477 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			477 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #cloud-config
 | |
| users:
 | |
|  - name: testuser
 | |
|    lock-passwd: false
 | |
|    passwd: hashed-passwd-here
 | |
|    ssh_authorized_keys:
 | |
|     - ssh-key-here
 | |
|    sudo: ['ALL=(ALL) NOPASSWD:ALL']
 | |
|    groups: sudo
 | |
|    shell: /bin/bash
 | |
| 
 | |
| ssh_pwauth: True
 | |
| package_upgrade: true
 | |
| apt_upgrade: false
 | |
| #manage_etc_hosts: localhost
 | |
| manage_etc_hosts: true
 | |
| fqdn: %FQDN%
 | |
| timezone: US/Mountain
 | |
| datasource_list:
 | |
|  - ConfigDrive
 | |
| 
 | |
| packages:
 | |
|   - openssh-server
 | |
|   - nano
 | |
| 
 | |
| runcmd:
 | |
|   - [ touch, /etc/cloud/cloud-init.disabled ] |