Internal SSO at Grabyo

SSO at Grabyo

Continuous improvement of security posture is core to our Security policy and best practices, and so at the beginning of the year, we migrated our internal tools from a secure username and password with multifactor authentication to a Single Sign On authentication system.

Why SSO?

If you’ve ever used your Google or Facebook login to access an app, you’ve used SSO. In simple terms, it is the ability to login into another application using your identity from another platform (i.e. Google, Facebook, Okta, etc.).

In this blog post, we will uncover how SSO has transformed our user management for our internal tools, exploring its benefits and the main technologies we have used to make it happen.

To fully understand the benefits of SSO, let’s compare the different user workflows before and after implementing SSO.

Access to AWS accounts

Before SSO

Before we implemented SSO to access our AWS accounts, we had a dedicated AWS account for user management called “the Identity account” as per AWS recommendation.

For better governance, this account only held IAM user permissions to other AWS accounts and did not run any other workflows or services.

When a new employee joined or left the business, our operations team would need to create or destroy a new user manually.

In the old setup, to access our AWS accounts, our employees had to first log into the Identity account with usernames and passwords and then assume a role to access other accounts.

sso



One of the most significant downsides of this approach was letting our engineers know which roles they had access to in our different accounts.

After SSO

With the introduction of SSO, we migrated our user permissions from the Identity account to AWS IAM Identity Center (we’ll cover this technology in more detail later in this post). Unfortunately, our operations team still requires to manually provision users and permissions on this tool for all our AWS users.

User access is one of the most significant benefits of SSO. Users no longer need to manage multiple usernames and passwords. Instead, they log in using their Identity Provider account (IdP from now on – we’ll cover this technology later) to access the following portal:

sso


As you can see, this console lets the user know the accounts and roles he has access. Furthermore, accessing these accounts is as simple as clicking a button.

Finally, when a user leaves the business, their access to our AWS accounts will get immediately revoked as soon as their IdP account is revoked (the first offboarding step).

Access to AWS Client VPN

Before SSO

Before we implemented SSO, the workflow for provisioning new users required:

  • First, create an individual certificate for every user.
  • Then, generate a custom VPN configuration file so the VPN client can connect to the VPN endpoint with the certificate.
  • Finally, distribute these files safely to the end user.

If you are unfamiliar with SSL certificates, let me tell you that storing and distributing them securely is not a trivial process!

The end users of our VPN needed to download the previously mentioned files to their computer, install the VPN client software and load the given configuration. Once the setup was completed, connecting to the VPN required a simple button click. However, please note that this connection does not require any additional password prompt bringing an additional security risk.

Revoking access for a user to our VPN required the revocation of the certificate on the VPN endpoint.

After SSO

AWS Client VPN has direct integration with AWS IAM Identity Center. Providing access to our VPN requires an AWS user with the right IAM permission to access the VPN client. Once the user is created, they can log into the SSO portal using their IdP account.

sso


On the SSO portal, they get direct access to AWS Client VPN Self-Service Portal.

sso


On this portal, they can easily download a fully auto-generated configuration for their user and the right client for its architecture.

Once they set up the client, connecting to the VPN will prompt a browser tab where the user will need to authenticate with their IdP account without any need for certificates or passwords.

Finally, when a user leaves the business, their access to our AWS Client VPN will get immediately revoked as soon as their IdP account is revoked (the first offboarding step).

Access to Grabyo Tools

Grabyo Tools is a web application built in-house whose primary purpose is to help Grabyo employees to manage the Grabyo platform for our customers.

Before SSO

These tools had their user database, and these users were created by any of the admin users of the tool. Revoking access was again a manual process driven by the same admins.

All users of these tools must be connected to our VPN and use multifactor authentication when logging in for added security.

After SSO

The workflow for user provisioning is almost identical to before. An admin user on the Tools platform must create a user inside tools. However, there is no need to set up passwords or MFA because users will now log in using their IdP account instead.

Finally, when a user leaves the business, their access to our Grabyo Tools will get immediately revoked as soon as their IdP account is revoked (the first offboarding step).

In summary

Now that you have seen how our workflows changed with the introduction of SSO, I think it’s worth highlighting the significant benefits we were seeking with the introduction of SSO.

Passwordless logins

In conjunction with a good password policy, employees have to use unique passwords for each tool and service, and these passwords should be rotated regularly.

However, with SSO, managing these many different passwords is no longer needed as access to tools and platforms is federated through the identity provider.

Centralize user access management

Before SSO, when an employee left the company, we needed to revoke their access individually on all these tools manually. This was time-consuming and a considerable security risk in case one of the platforms was forgotten.

With the introduction of SSO, we only need to revoke the user access to Grabyo’s Identity Provider, and access to all other tools will immediately be revoked.

A final comment about user provisioning

User provisioning is the process of assigning permissions based on roles and event changes throughout an account’s lifecycle. Provisioning (and de-provisioning) grants, modifies or revokes access and privileges based on triggers such as:

  • New hire.
  • Role change.
  • A move to a different business unit.
  • Termination.

It’s important to clarify that user provisioning is a future milestone of our security roadmap. However, it was not a requirement for this project, where we solely focused on implementing SSO.

Let’s get technical

We don’t want to dive deep into the technologies and protocols used to leverage SSO. You can find tons of material online explaining these concepts in great detail.

Instead, we want to discuss the architecture and main technologies used to highlight that most of this work was achieved with minimal development effort.


The identity provider

An identity provider (IdP) is a service that stores and manages digital identities. Companies use these services to allow their employees or users to connect with the resources they need.

There are many identity providers (i.e. Active Directory, Okta, Auth0, etc.) out there. Choosing one is not a simple decision. Your choice will be driven by the support you require with modern and legacy authentication technologies.

As you can see in the previous diagram, the Identity Provider is the common link that governs access to all the other applications. Therefore, if a user wants to access our internal applications, they must have a valid account on our identity provider.

AWS IAM Identity Center (Successor to AWS Single Sign-On)


AWS IAM Identity Center (known before as AWS SSO) sits at the centre of our architecture, and it provides the following features:

sso
  • It can integrate with external identity providers like Active Directory, Okta, Google Workspace, etc.
  • If you don’t have access to any of these identity providers, you can use it as an identity provider for other applications.
  • AWS IAM Identity Center does support automatic provisioning for some identity providers.
  • AWS IAM Identity Center can then give users access to AWS consoles (1), Business cloud applications (2) like Slack, Dropbox, or even custom SAML applications (3).

In the context of Grabyo, we use the AWS IAM Identity Center to define all the AWS users, and their access permissions to all the AWS accounts in our AWS Organisation, Grabyo’s VPN, and AWS Managed Grafana.

AWS Cognito

AWS Cognito is a user identity service that allows developers to add user sign-up, sign-in, and access control to their web and mobile apps quickly and easily. AWS Cognito takes care of most of the heavy lifting around user identity and lets developers focus on application development.

Before SSO, our Grabyo Tools had its user database and login workflow. We migrated all this built-in-house logic to AWS Cognito to implement SSO and leveraged their out-of-the-box support for federated login with AWS.

This is the only piece of work that requires some development. However, this effort was considerably less than extending our application to start supporting SAML to integrate it with our IdP.

Here’s the diagram of the authentication flow:

  1. The app starts the sign-up and sign-in process by directing our user to Cognito.
  2. Our user is redirected to the IdP.
  3. The IdP authenticates the user if necessary. If the IdP recognizes that the user has an active session, the IdP skips the authentication to provide a single sign-on (SSO) experience.
  4. The IdP POSTs the SAML assertion to Amazon Cognito.
  5. After verifying the SAML assertion, Amazon Cognito returns a JWT token to the app for the user who is now signed in.
  6. The app can now make API requests to our backend services as long as it passes along the JWT token that it received from Cognito.

Final comments

Before the discovery of this project, we were under the impression that implementing SSO in our tools would require a lot of development time. However, thanks to AWS’s managed services, we could build this solution without much effort and cost.

Looking back at it and considering the security and automation benefits SSO provides, we highly recommend organizations of all sizes use these technologies from day one.

Thanks for reading!

Scroll to Top

Book a call with us.

We just need a few details from you, then you will be able to book a meeting directly with a member of our team!

Try Grabyo for free.

All we need is a few details from you, then a member of our team will be in touch shortly.

Try Grabyo for free.

All we need is a few details from you, then a member of our team will be in touch shortly.

Book a meeting at SVG Summit 2022.

We just need a few details from you, then you will be able to book a meeting directly with a member of our team!

Register interest to attend Grabyo Spotlight London 2023

We just need a few details from you then we'll be in touch to confirm your spot!

Register interest to attend Grabyo Spotlight Melbourne 2023

We just need a few details from you then we'll be in touch to confirm your spot!

Get in touch with us about building your own PoC

We just need a few details from you then we'll be in touch!

Book a meeting at NAB 2023!

We just need a few details from you, then you will be able to book a meeting directly with a member of our team!

Register interest for Grabyo CloudLab

We just need a few details from you, then we'll be in touch with the next steps!

Get Started With Grabyo!

We just need a few details from you, before we get started.

Get Started With Grabyo!

We just need a few details from you, before we get started.

Book a meeting at MPTS 2023!

We just need a few details from you, then you will be able to book a meeting directly with a member of our team!

Download infographic

Fill out just a few details and the infographic will be delivered directly to your inbox.

Meet us at SET Nordeste.

We just need a few details from you then a member of our team will be in touch.

Try Grabyo for free.

All we need is a few details from you, then a member of our team will be in touch shortly.