mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 18:29:21 +00:00 
			
		
		
		
	- Use dockerized mc with MC_HOST_minio (stateless), no temp files/dirs - Create only RAW policy name with slash to match Keycloak claim - Split policy: s3:* on S3 ARNs; admin:* on Resource "*" - Add mc vars (image, MC_HOST components) to vars/main.yml - Remove unused Ollama dependency block from tasks Refs: ChatGPT conversation → https://chatgpt.com/share/68d1eab9-a35c-800f-aa81-76fb2101bd93
		
			
				
	
	
		
			19 lines
		
	
	
		
			287 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			287 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
| {
 | |
|   "Version": "2012-10-17",
 | |
|   "Statement": [
 | |
|     {
 | |
|       "Effect": "Allow",
 | |
|       "Action": ["s3:*"],
 | |
|       "Resource": [
 | |
|         "arn:aws:s3:::*",
 | |
|         "arn:aws:s3:::*/*"
 | |
|       ]
 | |
|     },
 | |
|     {
 | |
|       "Effect": "Allow",
 | |
|       "Action": ["admin:*"],
 | |
|       "Resource": ["*"]
 | |
|     }
 | |
|   ]
 | |
| }
 |