Skip to content

Commit 00d44d8

Browse files
update images
1 parent 276258d commit 00d44d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/blog/multi-tenant-system-with-aws-cdk.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Key requirements include:
3737

3838
## Architectural Overview
3939

40-
![multi-tenant-architecture](images/blog/multi-tenant-system-with-aws-cdk/multi-tenant-architecture.png)
40+
<img src="/images/blog/multi-tenant-system-with-aws-cdk/multi-tenant-architecture.png" alt="multi-tenant-architecture" width="700" height = "600">
4141

4242
To visualize our architecture, consider the following components:
4343

@@ -63,7 +63,7 @@ Let’s first start looking into how we break down the [recommended](https://git
6363

6464
We took the reference from this [config](https://github.com/aws-samples/aws-vpc-builder-cdk/blob/main/config/sample-firewall-blog.vpcBuilder.yaml) file. Let’s see how we can visualize this configuration file and how the actual output will look like, which can be understood by the below diagram.
6565

66-
![multi-vpc](images/blog/multi-tenant-system-with-aws-cdk/multi-vpc.png)
66+
<img src="/images/blog/multi-tenant-system-with-aws-cdk/multi-vpc.png" alt="multi-vpc" width="700" height = "750">
6767

6868
Let’s discuss in a bit what the components are. Although most of the components are self-explanatory, first start with
6969

@@ -238,7 +238,7 @@ AWS CDK is imperative, and making it dynamic can break in the future if you want
238238

239239
So identifying the boundary of what to keep together and what to do differently with respect to the stack should be identified carefully; else there will be some efforts required to move resources from a stack to another.
240240

241-
![cdk-application-infra](images/blog/multi-tenant-system-with-aws-cdk/cdk-application-infra.png)
241+
<img src="/images/blog/multi-tenant-system-with-aws-cdk/cdk-application-infra.png" alt="cdk-application-infra" width="1100" height = "750">
242242

243243
This above is the architecture overview of application infrastructure written in AWS CDK. From configuration file to visualization, it will help us understand how to write the CDK stacks to make tenants and service onboarding easier.
244244

0 commit comments

Comments
 (0)