Development 14

AWS CDK Stack Design: There's No Single Right Answer - 3 Strategies to Lead Your Project to Success

Have you ever experienced that moment of panic when running cdk list only to see dozens of stacks flooding your terminal? Or perhaps you've waited over 10 minutes for a simple Lambda function update to deploy after running cdk deploy? All these situations ultimately come down to your stack management strategy. Anyone working with AWS CDK eventually faces this dilemma: Should I break everything d..

Development/AWS 2025.08.31

Can You Really Trust Your Web Agency? (Industry Insider Reveals Dangerous SEO Secrets)

Are you unknowingly heading down the wrong path with your SEO investment?You've invested significantly in your website and are paying a substantial monthly fee to an SEO agency to attract more customers. Perhaps you're satisfied watching the rising numbers in your monthly reports. "Our keyword rankings improved this month!" and "Traffic increased by 30%!" – these updates probably make you feel l..

Development/etc 2025.08.24

Why Did Australia Choose RDF (Graph) for Their New Address Model? A Discovery from GitHub

1. Prologue: An Interesting Encounter with a GitHub RepositoryWhile browsing GitHub recently, I discovered an intriguing public repository called icsm-au/addr-model. This repository is an official project managed by ICSM (Intergovernmental Committee on Surveying and Mapping for Australia and New Zealand), aimed at establishing new address data standards for all of Australia, including Queensland..

Development/AWS 2025.08.06

Hosting React Apps on AWS S3 + CloudFront: Managing Infrastructure as Code with CDK

When deploying React SPAs (Single Page Applications), many developers consider S3 static hosting as their go-to solution. However, using S3 alone presents several challenges that can impact security, performance, and user experience. In this article, we'll explore how to leverage AWS CDK to host React applications on S3 + CloudFront in a secure and efficient manner.Common Challenges with React S..

Development/AWS 2025.07.28

AWS Security Guide for Beginners: KMS vs. Secrets Manager - When to Use What?

When developing applications, you inevitably encounter sensitive information like database passwords, external API keys, and certificates. Have you ever wondered how to manage this sensitive data properly?"Well, let me just hardcode it in the source code..." "I'll just write it in a configuration file..." "Setting it as an environment variable should be safe enough, right?"Wait! This is like wri..

Development/AWS 2025.07.22

Building Secure Microservice Authentication with AWS CDK: A Service-to-Service Authentication Pattern Using Cognito

As microservice architectures become mainstream, secure inter-service communication is no longer optional—it's essential. This becomes especially critical when one service needs to create and manage users in another service, requiring an authentication system that satisfies both security and scalability requirements.Today, I'll introduce a practical pattern for implementing service-to-service (S..

Development/AWS 2025.07.15

Building a Cognito-Based User Authentication System with AWS CDK: Complete Guide to Group-Based Permissions

When building serverless applications, you'll often face the challenge: "How can I assign different permissions to different users in a secure and scalable way?" This becomes especially critical for services like B2B SaaS platforms or e-commerce systems where user roles are clearly defined.Today, I'll show you how to implement a group-based permission management authentication system using Amazo..

Development/AWS 2025.07.14

EventBridge-Lambda Conditional Processing Pattern with CDK: Smart Event Routing Based on Business Logic

When developing serverless applications, you often encounter situations where "additional processing is needed only under specific conditions." For example, sending notifications only when a user's score is low, or executing additional review processes only for requests that don't meet certain thresholds.Today, I'll introduce the EventBridge-Lambda conditional processing pattern that's useful in..

Development/AWS 2025.07.10