-
Notifications
You must be signed in to change notification settings - Fork 1
/
commands_cdk.sh
71 lines (50 loc) · 2.12 KB
/
commands_cdk.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/bin/bash
################################################################################
# ------------------------------------------------------------------------------
# |CDK COMMANDS (FOR EXPLAINING ITS USAGE)
# ------------------------------------------------------------------------------
################################################################################
################################################################################
# PART 1: Configure NodeJs and CDK libraries
################################################################################
# Install NodeJs
# --> https://nodejs.org/en/download/
# Verify that NodeJs/npm is installed correctly
node --version
npm --version
# Install AWS-CDK (on NodeJs)
sudo npm install -g aws-cdk
# Verify correct install of AWS-CDK
npm list --global | grep aws-cdk
################################################################################
# PART 2: Initial Project Setup (Only run these at the beginning)
################################################################################
# Configure AWS credentials (follow steps, or use your preferred method)
aws configure
# Bootstrap CDK (provision initial resources to work with CDK.. S3, roles, etc)
#! Change "ACCOUNT-NUMBER-1" and "REGION-1" to your needed values
cdk bootstrap aws://ACCOUNT-NUMBER-1/REGION-1
# Create the CDK project's folder
mkdir cdk
cd cdk || echo "Make sure that the folder exists"
# Initialize project
cdk init --language python
# Install Node/TypeScript modules
npm install .
################################################################################
# PART 3: Main CDK commands (most used)
################################################################################
# Move to "cdk" folder (where the CDK config and deployment files are located)
cd ./cdk || exit
cdk deploy
# CDK commands
cdk synthesize
cdk diff
cdk deploy
cdk destroy
################################################################################
# PART 4: Other CDK usefull commands
################################################################################
# Help
cdk --help
cdk command --help