mirror of
				https://github.com/open-metadata/OpenMetadata.git
				synced 2025-10-30 18:17:53 +00:00 
			
		
		
		
	 34fbe5d64c
			
		
	
	
		34fbe5d64c
		
			
		
	
	
	
	
		
			
			* DOCS - Prepare 1.7 Release and 1.8 SNAPSHOT * DOCS - Prepare 1.7 Release and 1.8 SNAPSHOT
		
			
				
	
	
		
			34 lines
		
	
	
		
			939 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			939 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| title: How to enable AWS RDS IAM Auth
 | |
| slug: /deployment/rds-iam-auth
 | |
| collate: false
 | |
| ---
 | |
| 
 | |
| # Aws resources on RDS IAM Auth
 | |
| [AWS Reference Doc](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html)
 | |
| 
 | |
| # Requirements
 | |
| 
 | |
| 1. AWS RDS Cluster with IAM auth enabled
 | |
| 2. User on DB Cluster with IAM enabled
 | |
| 3. IAM policy with permission on RDS connect
 | |
| 4. Role with IAM policy attached
 | |
| 5. IAM role attached to an EC2 instance on which openmetadata is deployed or ServiceAccount/Kube2Iam role attached to pod.
 | |
| 
 | |
| # How to enable ADS RDS IAM Auth on postgresql
 | |
| 
 | |
| Set the environment variables
 | |
| 
 | |
| ```Commandline
 | |
|   DB_USER_PASSWORD: "dummy"
 | |
|   DB_PARAMS: "awsRegion=eu-west-1&allowPublicKeyRetrieval=true&sslmode=require&serverTimezone=UTC"
 | |
| ```
 | |
| 
 | |
| Either through helm (if deployed in kubernetes) or as env vars.
 | |
| 
 | |
| {% note %}
 | |
| 
 | |
| The `DB_USER_PASSWORD` is still required and cannot be empty. Set it to a random/dummy string.
 | |
| 
 | |
| {% /note %}
 |