# What is the Archera AWS Account ID?

In case you have trouble finding the Archera AWS account number to delegate access to during onboarding, you can find the information below.

See [What IAM permissions does the production deployment require?](/help-center/aws-onboarding/iam-permissions-production.md) for details on the role permissions.

## Standard AWS Account

**Archera's account ID:** `967800896805`

**Full principal for production:**

```
arn:aws:iam::967800896805:user/reserved-write
```

**Full principal for trial:**

```
arn:aws:iam::967800896805:user/reserved-read
```

## AWS GovCloud Account

**Archera's GovCloud account ID:** `202754554539`

**Full principal for GovCloud production:**

```
arn:aws:iam::202754554539:user/reserved-write
```

**Full principal for GovCloud trial:**

```
arn:aws:iam::202754554539:user/reserved-read
```

## Command Line Setup

**Create trial role via CLI:**

```bash
aws iam create-role \
  --role-name ReservedAI-Read \
  --assume-role-policy-document '{
    "Version": "2012-10-17",
    "Statement": [{
      "Effect": "Allow",
      "Principal": {"AWS": "arn:aws:iam::967800896805:user/reserved-read"},
      "Action": "sts:AssumeRole",
      "Condition": {"StringEquals": {"sts:ExternalId": "YOUR_EXTERNAL_ID"}}
    }]
  }'
```

## Related Resources

* [What IAM permissions does the Archera AWS trial deployment require?](/help-center/aws-onboarding/iam-permissions-trial.md)
* [What IAM permissions does the Archera AWS production deployment require?](/help-center/aws-onboarding/iam-permissions-production.md)
* [How Does Archera Access my AWS Environment?](/help-center/security/aws-access.md)
* [Do I Need to Grant Archera Access to my GovCloud Account?](/help-center/security/govcloud-access.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.archera.ai/help-center/aws-onboarding/aws-account-id.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
