@@ -38,37 +38,35 @@ echo "Creating Security Group for Application..."
38
38
39
39
export EC2_SG=" application-sg"
40
40
41
- echo ` (aws ec2 create-security-group \
41
+ echo " $ ( aws ec2 create-security-group \
42
42
--region $REGION \
43
43
--group-name $EC2_SG \
44
44
--description " Security Group for Hyperswitch EC2 instance" \
45
- --tag-specifications " ResourceType=security-group,Tags=[{Key=ManagedBy,Value=hyperswitch}]" \
46
- )`
45
+ --tag-specifications " ResourceType=security-group,Tags=[{Key=ManagedBy,Value=hyperswitch}]" ) "
47
46
48
47
export APP_SG_ID=$( aws ec2 describe-security-groups --group-names $EC2_SG --region $REGION --output text --query ' SecurityGroups[0].GroupId' )
49
48
50
49
echo " Security Group for Application CREATED.\n"
51
50
52
51
echo " Creating Security Group ingress for port 80..."
53
52
54
- echo ` aws ec2 authorize-security-group-ingress \
53
+ echo " $( aws ec2 authorize-security-group-ingress \
55
54
--group-id $APP_SG_ID \
56
55
--protocol tcp \
57
56
--port 80 \
58
57
--cidr 0.0.0.0/0 \
59
- --region $REGION `
58
+ --region $REGION ) "
60
59
61
60
echo " Security Group ingress for port 80 CREATED.\n"
62
61
63
-
64
62
echo " Creating Security Group ingress for port 22..."
65
63
66
- echo ` aws ec2 authorize-security-group-ingress \
64
+ echo " $( aws ec2 authorize-security-group-ingress \
67
65
--group-id $APP_SG_ID \
68
66
--protocol tcp \
69
67
--port 22 \
70
68
--cidr 0.0.0.0/0 \
71
- --region $REGION `
69
+ --region $REGION ) "
72
70
73
71
echo " Security Group ingress for port 22 CREATED.\n"
74
72
@@ -78,11 +76,11 @@ echo "Security Group ingress for port 22 CREATED.\n"
78
76
echo " Creating Security Group for Elasticache..."
79
77
80
78
export REDIS_GROUP_NAME=redis-sg
81
- echo ` aws ec2 create-security-group \
79
+ echo " $( aws ec2 create-security-group \
82
80
--group-name $REDIS_GROUP_NAME \
83
81
--description " SG attached to elasticache" \
84
82
--tag-specifications " ResourceType=security-group,Tags=[{Key=ManagedBy,Value=hyperswitch}]" \
85
- --region $REGION `
83
+ --region $REGION ) "
86
84
87
85
echo " Security Group for Elasticache CREATED.\n"
88
86
@@ -91,12 +89,12 @@ echo "Creating Inbound rules for Redis..."
91
89
export REDIS_SG_ID=$( aws ec2 describe-security-groups --group-names $REDIS_GROUP_NAME --region $REGION --output text --query ' SecurityGroups[0].GroupId' )
92
90
93
91
# CREATE INBOUND RULES
94
- echo ` aws ec2 authorize-security-group-ingress \
92
+ echo " $( aws ec2 authorize-security-group-ingress \
95
93
--group-id $REDIS_SG_ID \
96
94
--protocol tcp \
97
95
--port 6379 \
98
96
--source-group $EC2_SG \
99
- --region $REGION `
97
+ --region $REGION ) "
100
98
101
99
echo " Inbound rules for Redis CREATED.\n"
102
100
@@ -105,11 +103,11 @@ echo "Inbound rules for Redis CREATED.\n"
105
103
echo " Creating Security Group for RDS..."
106
104
107
105
export RDS_GROUP_NAME=rds-sg
108
- echo ` aws ec2 create-security-group \
106
+ echo " $( aws ec2 create-security-group \
109
107
--group-name $RDS_GROUP_NAME \
110
108
--description " SG attached to RDS" \
111
109
--tag-specifications " ResourceType=security-group,Tags=[{Key=ManagedBy,Value=hyperswitch}]" \
112
- --region $REGION `
110
+ --region $REGION ) "
113
111
114
112
echo " Security Group for RDS CREATED.\n"
115
113
@@ -118,44 +116,44 @@ echo "Creating Inbound rules for RDS..."
118
116
export RDS_SG_ID=$( aws ec2 describe-security-groups --group-names $RDS_GROUP_NAME --region $REGION --output text --query ' SecurityGroups[0].GroupId' )
119
117
120
118
# CREATE INBOUND RULES
121
- echo ` aws ec2 authorize-security-group-ingress \
119
+ echo " $( aws ec2 authorize-security-group-ingress \
122
120
--group-id $RDS_SG_ID \
123
121
--protocol tcp \
124
122
--port 5432 \
125
123
--source-group $EC2_SG \
126
- --region $REGION `
124
+ --region $REGION ) "
127
125
128
126
echo " Inbound rules for RDS CREATED.\n"
129
127
130
- echo ` aws ec2 authorize-security-group-ingress \
128
+ echo " $( aws ec2 authorize-security-group-ingress \
131
129
--group-id $RDS_SG_ID \
132
130
--protocol tcp \
133
131
--port 5432 \
134
132
--cidr 0.0.0.0/0 \
135
- --region $REGION `
133
+ --region $REGION ) "
136
134
137
135
echo " Inbound rules for RDS (from any IP) CREATED.\n"
138
136
139
137
echo " Creating Elasticache with Redis engine..."
140
138
141
139
export CACHE_CLUSTER_ID=hyperswitch-cluster
142
140
143
- echo ` aws elasticache create-cache-cluster \
141
+ echo " $( aws elasticache create-cache-cluster \
144
142
--cache-cluster-id $CACHE_CLUSTER_ID \
145
143
--cache-node-type cache.t3.medium \
146
144
--engine redis \
147
145
--num-cache-nodes 1 \
148
146
--security-group-ids $REDIS_SG_ID \
149
147
--engine-version 7.0 \
150
148
--tags " Key=ManagedBy,Value=hyperswitch" \
151
- --region $REGION `
149
+ --region $REGION ) "
152
150
153
151
echo " Elasticache with Redis engine CREATED.\n"
154
152
155
153
echo " Creating RDS with PSQL..."
156
154
157
155
export DB_INSTANCE_ID=hyperswitch-db
158
- echo ` aws rds create-db-instance \
156
+ echo " $( aws rds create-db-instance \
159
157
--db-instance-identifier $DB_INSTANCE_ID \
160
158
--db-instance-class db.t3.micro \
161
159
--engine postgres \
@@ -166,7 +164,7 @@ echo `aws rds create-db-instance \
166
164
--region $REGION \
167
165
--db-name hyperswitch_db \
168
166
--tags " Key=ManagedBy,Value=hyperswitch" \
169
- --vpc-security-group-ids $RDS_SG_ID `
167
+ --vpc-security-group-ids $RDS_SG_ID ) "
170
168
171
169
echo " RDS with PSQL CREATED.\n"
172
170
@@ -308,17 +306,17 @@ echo "EC2 instance launched.\n"
308
306
309
307
echo " Add Tags to EC2 instance..."
310
308
311
- echo ` aws ec2 create-tags \
309
+ echo " $( aws ec2 create-tags \
312
310
--resources $HYPERSWITCH_INSTANCE_ID \
313
311
--tags " Key=Name,Value=hyperswitch-router" \
314
- --region $REGION `
312
+ --region $REGION ) "
315
313
316
314
echo " Tag added to EC2 instance.\n"
317
315
318
- echo ` aws ec2 create-tags \
316
+ echo " $( aws ec2 create-tags \
319
317
--resources $HYPERSWITCH_INSTANCE_ID \
320
318
--tags " Key=ManagedBy,Value=hyperswitch" \
321
- --region $REGION `
319
+ --region $REGION ) "
322
320
323
321
echo " ManagedBy tag added to EC2 instance.\n"
324
322
0 commit comments