This is a sample project for Python development with CDK.
The cdk.json
file tells the CDK Toolkit how to execute your app.
This project is set up like a standard Python project. The initialization
process also creates a virtualenv within this project, stored under the .env
directory. To create the virtualenv it assumes that there is a python3
(or python
for Windows) executable in your path with access to the venv
package. If for any reason the automatic creation of the virtualenv fails,
you can create the virtualenv manually.
To manually create a virtualenv on MacOS and Linux:
$ python3 -m venv .venv
After the init process completes and the virtualenv is created, you can use the following step to activate your virtualenv.
$ source .env/bin/activate
If you are a Windows platform, you would activate the virtualenv like this:
% .venv\Scripts\activate.bat
Once the virtualenv is activated, you can install the required dependencies.
(.venv) $ pip install -r requirements.txt
At this point you can now synthesize the CloudFormation template for this code.
(.venv) $ export CDK_DEFAULT_ACCOUNT=$(aws sts get-caller-identity --query Account --output text) (.venv) $ export CDK_DEFAULT_REGION=$(aws configure get region) (.venv) $ cdk synth --all \ -c vpc_name='your-existing-vpc-name' \ -c db_cluster_name='db-cluster-name'
Use cdk deploy
command to create the stack shown above.
(.venv) $ cdk deploy --all \ -c vpc_name='your-existing-vpc-name' \ -c db_cluster_name='db-cluster-name'
Delete the CloudFormation stack by running the below command.
(.venv) $ cdk destroy --force --all
cdk ls
list all stacks in the appcdk synth
emits the synthesized CloudFormation templatecdk deploy
deploy this stack to your default AWS account/regioncdk diff
compare deployed stack with current statecdk docs
open CDK documentation
Enjoy!
-
Install PostgreSQL 13 on Amazon Linux 2
$ sudo amazon-linux-extras install epel $ sudo amazon-linux-extras | grep postgres $ sudo amazon-linux-extras enable postgresql13 $ sudo yum clean metadata $ sudo yum install -y postgresql
-
Connect to Aurora PostgreSQL
ℹ️ The Aurora PostgreSQL
username
andpassword
are stored in the AWS Secrets Manager as a name such asDatabaseSecret-xxxxxxxxxxxx
.$ psql -h db-cluster-name.cluster-xxxxxxxxxxxx.region-name.rds.amazonaws.com -Upostgres -W psql (13.3, server 13.4) SSL connection (protocol: TLSv1.2, cipher: ECDHE-RSA-AES256-GCM-SHA384, bits: 256, compression: off) Type "help" for help. postgres=> postgres=> \l List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+-------------+-------------+----------------------- postgres | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | rdsadmin | rdsadmin | UTF8 | en_US.UTF-8 | en_US.UTF-8 | rdsadmin=CTc/rdsadmin template0 | rdsadmin | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/rdsadmin + | | | | | rdsadmin=CTc/rdsadmin template1 | postgres | UTF8 | en_US.UTF-8 | en_US.UTF-8 | =c/postgres + | | | | | postgres=CTc/postgres (4 rows) postgres=> SELECT version(); version ------------------------------------------------------------------------------------------------- PostgreSQL 13.4 on x86_64-pc-linux-gnu, compiled by x86_64-pc-linux-gnu-gcc (GCC) 7.4.0, 64-bit (1 row) postgres=>
\?
opens the command overview\d
lists things:\du
lists users,\dt
lists tables etc
MySQL command | PostgreSQL equivalent |
---|---|
mysql -u $USERNAME -p | psql -u postgres |
SHOW DATABASES | \l[ist1] |
USE some_database | \c some_database |
SHOW TABLES | \dt |
DESCRIBE some_table | \d+ some_table |
SHOW INDEX FROM some_table | \di |
CREATE USER username IDENTIFIED BY 'password' | CREATE ROLE username WITH createdb LOGIN [PASSWORD 'password']; |
GRANT ALL PRIVILEGES ON database.* TO username@localhost | GRANT ALL PRIVILEGES ON DATABASE database TO username; |
SELECT * FROM table LIMIT 10\G; | \x on |