-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'add-rds-db-instance' into lambda-add-rds-user
- Loading branch information
Showing
5 changed files
with
95 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
# Read the JSON file | ||
#https://registry.terraform.io/providers/hashicorp/local/latest/docs/data-sources/file | ||
data "local_file" "user_list" { | ||
filename = "${path.module}/user_list.json" | ||
} | ||
|
||
# Create SSM Parameter | ||
#https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ssm_parameter | ||
resource "aws_ssm_parameter" "user_list" { | ||
name = "/${var.name}/db_user_list" # Replace with your desired parameter name | ||
description = "User and database mappings for Amazon RDS for PostgreSQL DB users." | ||
type = "String" | ||
value = data.local_file.user_list.content | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import os | ||
import psycopg2 | ||
import boto3 | ||
|
||
def lambda_handler(event, context): | ||
# Retrieve database connection details from environment variables | ||
host = os.environ['DB_HOST'] | ||
port = os.environ['DB_PORT'] | ||
user = os.environ['DB_USER'] | ||
password = os.environ['DB_PASSWORD'] | ||
|
||
# Name of the new database to create | ||
new_db_name = 'ItemDB' | ||
|
||
try: | ||
# Connect to the default 'postgres' database | ||
conn = psycopg2.connect( | ||
host=host, | ||
port=port, | ||
user=user, | ||
password=password, | ||
database='postgres' | ||
) | ||
conn.autocommit = True | ||
|
||
# Create a cursor | ||
cur = conn.cursor() | ||
|
||
# Check if the database already exists | ||
cur.execute(f"SELECT 1 FROM pg_database WHERE datname = '{new_db_name}'") | ||
exists = cur.fetchone() | ||
|
||
if not exists: | ||
# Create the new database | ||
cur.execute(f'CREATE DATABASE "{new_db_name}"') | ||
print(f"Database '{new_db_name}' created successfully") | ||
else: | ||
print(f"Database '{new_db_name}' already exists") | ||
|
||
# Close the cursor and connection | ||
cur.close() | ||
conn.close() | ||
|
||
return { | ||
'statusCode': 200, | ||
'body': f"Database operation for '{new_db_name}' completed successfully" | ||
} | ||
|
||
except Exception as e: | ||
print(f"Error: {str(e)}") | ||
return { | ||
'statusCode': 500, | ||
'body': f"An error occurred: {str(e)}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"user_database_mappings": [ | ||
{ | ||
"username": "user1" | ||
}, | ||
{ | ||
"username": "user2", | ||
"database": "postgres" | ||
}, | ||
{ | ||
"username": "user3", | ||
"database": "db1" | ||
}, | ||
{ | ||
"username": "user4", | ||
"database": "db3" | ||
} | ||
] | ||
} |