This quickstart guide shows you how to you can setup Rebase in seconds. After completing this guide, you will be able to directly provision, search, manage and converse with your infra.
Prerequisites: Before you begin, create an account and complete onboarding. (~15 seconds)

Getting started

After you complete the onboarding process, your screen will look exactly like this. Screenshot 2025-07-22 at 11.31.20 PM.png This is where we will connect your AWS account with Rebase. Heres a quick break down of the field:
  1. Workspace Name: You can name it anything. We like to name the workspaces that are similar to AWS accounts we are connecting so we can remember which AWS account its connected to.
  2. Admin Email: Enter the email where you would like to receive notifications and emails regarding alerts for this workspace.
  3. Timezone: Enter the right timezone you are in. So conversations can be tied to the dates. E.g. When you ask ‘Yesterday’ Or ‘Last week’ Rebase knows exactly what you are asking.
  4. External ID: This is your Unique Identified for AWS connection. (According to AWS’s best practices)
  5. Access Type: This is the Access control you want to give to this user. You can switch between Admin, Power, and Read Only. More on Access Roles here.
  6. Role ARN: The AWS Role ARN that Rebase will use to access your resources. Below you can see where to find the Role ARN once you have created a CloudFormation Stack inside your AWS account.
  7. Default Region: The primary AWS region for your workspace operations. Keep the Region of your AWS account and Rebase Workspace same to avoid any hiccups.
Once you will out all of this information, click on this **CloudFormation Stack. A new tab with AWS Cloudformation Stack will open up. Screenshot2025 07 17at3 51 22AM Pn
Prerequisites: It will require you to Login to your AWS account. Make sure to select the right AWS account that you want to connect with Rebase.
Screenshot2025-07-17at3.53.52AM.png If you have been working with AWS and Cloudformation, you already know this. If this is your first time, we are using STS Connection by creating a CF stack to get the access for rebase. Its secure and standard way (recommended by AWS) to use it. If you are curious about the YAML template, you can click on View Template Or see the YAML code below:
AWSTemplateFormatVersion: '2010-09-09'
Description: |
  Rebase - Creates a secure IAM Role with AdministratorAccess that Rebase can assume to manage your AWS infrastructure. Rebase will assume this role using an External ID for added security.

Parameters:
  StackIdentifier:
    Type: String
    Description: Identifier applied to stack resource names
    MinLength: 6
    MaxLength: 24

  ExternalID:
    Type: String
    Description: External ID provided by Rebase (required for secure access, leave
      unchanged).
    MinLength: 36
    MaxLength: 36

Resources:
  RebaseAccessRole:
    Type: AWS::IAM::Role
    Properties:
      RoleName: !Sub RebaseAccessRole-${StackIdentifier}
      Description: Cross account access for Rebase to manage your AWS infrastructure.
      AssumeRolePolicyDocument:
        Version: '2012-10-17'
        Statement:
          - Effect: Allow
            Principal:
              AWS: arn:aws:iam::776940548999:root # Rebase AWS Account ID
            Action: sts:AssumeRole
            Condition:
              StringEquals:
                sts:ExternalId: !Ref ExternalID
      ManagedPolicyArns:
        - arn:aws:iam::aws:policy/AdministratorAccess

Outputs:
  RoleARN:
    Description: The ARN of the IAM role that can be assumed by Rebase.
    Value: !GetAtt RebaseAccessRole.Arn
Rebase will require you to enter the name of the stack that you are creatin Screenshot 2025-07-22 at 10.36.07 PM.png Once done, you can scroll to the bottom. You can select additional permissions here if you would like. Screenshot 2025-07-22 at 10.36.48 PM.png After that just check theCapabilities box and hit Create Stack. Screenshot 2025-07-22 at 10.39.11 PM.png AWS will take a few mins to create the desired stack for you. Screenshot 2025-07-22 at 10.40.33 PM.png This is what it will look like once the stack is created. Select the Role ARN value here and go back to the Rebase window and paste that value under Role ARN field. Screenshot 2025-07-22 at 10.41.20 PM.png Screenshot 2025-07-22 at 10.42.09 PM.png Just click Create Workspace and you are done. You will see this main window now. You are all set to start talking to your infrastructure. Screenshot 2025-07-22 at 10.44.56 PM.png Not sure what to ask? see the most used Prompts or read our use cases here.