Welcome to the Azure SaaS Dev Kit!

This kit provides you with a solid start buidling your own cloud-native Software as a Service (SaaS).

The Azure SaaS Development Kit is a deployable reference implementation with pre-built modules designed to help you build your own cloud-native SaaS offerings. It is:

  • A cloud-native control plane implementation that includes commonly needed SaaS components such as identity, onboarding, tenant management, and permissions.
  • 100% open-source code, allowing you to build by example or modify/extend to be purpose-built for your particular scenario.
  • Fully documented, making it clear how the code functions and why key design decisions were made.
  • Built using comprehensive CI/CD DevOps deployment scripts to get quickly up and running and ready for customization as the solution grows.

Usage Options

How you use the dev kit is up to you! Here are some ideas to get you started:

  • Modernize an existing application to support full multitenancy as part of a shift to a SaaS-based business model.
  • Develop a new, greenfield SaaS offering.
  • Migrate a SaaS offering from another cloud to Azure.

This is not a one-size-fits-all solution. Use as little or as much as you like. It is designed to be both a modular deployable reference implementation and also a reference architecture. You are free to use and change the code contained within this project in any way you’d like (following the terms of the license):

  • Deploy the entire solution to Azure using the deployment scripts provided and make changes to fit your exact use case, and start building your SaaS application from there.
  • Deploy one or more of our modules and hook it into your existing SaaS application.
  • Reference our code & architecture and build something entirely custom using the best practices we outlined.
  • Or, simply gain inspiration from this codebase.

Modular Architecture

  • An Identity Framework, which includes:
    • An Identity Provider (Azure AD B2C) that provides flexibility for both local accounts and integration with external providers.
    • A Permissions Service API that manages all user permissions and serves to enrich the user tokens returned from the identity provider.
  • The Signup / Administration web site, which includes:
    • A web app where your customers view plans and onboard to your solution.
    • A web app where you can administer tenants, including removing them and modifying them.
  • The Admin Service, which provides an extensible API to programatically manage CRUD operations on tenants.
  • The SaaS.Application, which is a sample end user application that you can extend or replace with your own code.

The Azure SaaS Dev Kit uses a fully multitenant deployment. Multitenancy is a complex topic with many facets, and there is no one size fits all approach.

Read more about multitenant architectures considerations and approaches at https://aka.ms/multitenancy.

Ready to get started?

Check out the quick start page.


Quick Start

Getting Started with the Azure SaaS Dev Kit

Architecture Diagrams

Last modified April 20, 2023: general language and typo cleanup (cc55b953)