Ojasa Mirai

Ojasa Mirai

Cloud

Loading...

Learning Level

🟢 Beginner🔵 Advanced
🔧 AWS Account Setup⚙️ AWS Compute Overview🖥️ EC2 Deployment🎯 Elastic Beanstalk⚡ Lambda Serverless📁 S3 Static Hosting🗄️ RDS Relational Database📊 DynamoDB NoSQL💾 ElastiCache Caching📊 AWS Monitoring🔑 AWS Authentication📈 AWS Scaling & Load Balancing🐳 AWS ECS Containers💰 AWS Cost Optimization
Cloud/Aws Deployment/Aws Account Setup

🔧 AWS Account Setup - Advanced

AWS Organizations

# Create organization
aws organizations create-organization --feature-set ALL

# Create account
aws organizations create-account \
  --email dev@example.com \
  --account-name DevAccount

# Create OU
aws organizations create-organizational-unit \
  --parent-id r-xxxx \
  --name Production

IAM Policies and Permissions

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Principal": {"Service": "ec2.amazonaws.com"},
      "Action": "sts:AssumeRole"
    }
  ]
}

Service Control Policies (SCPs)

# Create SCP to block S3 deletions
aws organizations put-policy \
  --content file://deny-s3-delete.json \
  --description "Prevent S3 deletions" \
  --type SERVICE_CONTROL_POLICY

Key Takeaways

  • **Organizations** manage multiple accounts
  • **SCPs** enforce governance policies
  • **Consolidated billing** simplifies accounting
  • **Cross-account roles** enable access

Next Steps

Explore advanced compute and orchestration patterns.


Resources

Python Docs

Ojasa Mirai

Master AI-powered development skills through structured learning, real projects, and verified credentials. Whether you're upskilling your team or launching your career, we deliver the skills companies actually need.

Learn Deep • Build Real • Verify Skills • Launch Forward

Courses

PythonFastapiReactJSCloud

© 2026 Ojasa Mirai. All rights reserved.

TwitterGitHubLinkedIn