๐๐ฎ๐ป๐ฑ๐ถ๐ป๐ด ๐ญ๐ผ๐ป๐ฒ ๐๐. ๐ง๐ฎ๐ฟ๐ด๐ฒ๐ ๐ญ๐ผ๐ป๐ฒ
- dotsincloud
- 12 minutes ago
- 1 min read
๐๐ฎ๐ป๐ฑ๐ถ๐ป๐ด ๐ญ๐ผ๐ป๐ฒ ๐๐. ๐ง๐ฎ๐ฟ๐ด๐ฒ๐ ๐ญ๐ผ๐ป๐ฒ in Cloud Infrastructure โ Know the Difference!
๐ญ. ๐๐ฎ๐ป๐ฑ๐ถ๐ป๐ด ๐ญ๐ผ๐ป๐ฒ
๐๐ฉ๐ข๐ต ๐ช๐ด ๐ช๐ต?
A Landing Zone is a pre-configured, secure, and compliant foundation to host cloud workloads. Think of it as the blueprint that defines your organizationโs cloud governance.
๐๐ฉ๐บ ๐ช๐ต ๐ฎ๐ข๐ต๐ต๐ฆ๐ณ๐ด:
It sets guardrails for networking, security, identity, and compliance โ all before a single workload is deployed.
๐๐บ๐ฑ๐ช๐ค๐ข๐ญ ๐ค๐ฐ๐ฎ๐ฑ๐ฐ๐ฏ๐ฆ๐ฏ๐ต๐ด:
VPCs/VNets & subnets
IAM / RBAC
Shared services (DNS, Bastion, etc.)
Logging & monitoring
Policies & compliance rules
๐๐ฆ๐ณ๐ณ๐ข๐ง๐ฐ๐ณ๐ฎ ๐๐น๐ข๐ฎ๐ฑ๐ญ๐ฆ โ ๐๐๐:
module "landing_zone" {
source = "terraform-aws-modules/vpc/aws"
name = "lz-network"
cidr = "10.0.0.0/16"
azs = ["us-east-1a", "us-east-1b"]
private_subnets = ["10.0.1.0/24", "10.0.2.0/24"]
public_subnets = ["10.0.101.0/24", "10.0.102.0/24"]
enable_nat_gateway = true
enable_dns_hostnames = true
tags = {
Environment = "landing-zone"
}
}
๐ฎ. ๐ง๐ฎ๐ฟ๐ด๐ฒ๐ ๐ญ๐ผ๐ป๐ฒ
๐๐ฉ๐ข๐ต ๐ช๐ด ๐ช๐ต?
The Target Zone is where actual business workloads are deployed โ web apps, databases, APIs, etc.
๐๐ฉ๐บ ๐ช๐ต ๐ฎ๐ข๐ต๐ต๐ฆ๐ณ๐ด:
It leverages the Landing Zoneโs foundation while delivering real value through business-critical services.
๐๐บ๐ฑ๐ช๐ค๐ข๐ญ ๐ค๐ฐ๐ฎ๐ฑ๐ฐ๐ฏ๐ฆ๐ฏ๐ต๐ด:
App servers (EKS, AKS, EC2, App Services)
Databases (RDS, Azure SQL)
Storage (S3, Blob)
App-specific IAM
CI/CD deployment pipelines
๐๐ฆ๐ณ๐ณ๐ข๐ง๐ฐ๐ณ๐ฎ ๐๐น๐ข๐ฎ๐ฑ๐ญ๐ฆ โ ๐๐๐:
resource "aws_instance" "web_app" {
ami = "ami-xxxxxxxxxxxxxxxxxxxx"
instance_type = "t3.micro"
subnet_id = module.landing_zone.public_subnets[0]
tags = {
Name = "target-zone-web-app"
Environment = "production"
}
}
ใณใกใณใ