Overview
To install a Nitro Co-signer in AWS and connect it to your workspace, follow these steps:
- Setup and configure your AWS environment
Prepare your AWS environment by creating and configuring the required resources. Ensure it meets the necessary specifications and security settings. - Add a Co-signer to the workspace using an API user
Using the Fireblocks Console or APIs, create an API user and use it to add a Co-signer to the workspace. - Install and connect the Co-signer to the workspace
Download the installation script to the Nitro-capable EC2 machine and run the script to install the Co-signer. Once installation is complete, the workspace owner approves the new MPC key shares for the API user through the Fireblocks mobile app.
You can now view the Co-signer and its paired API user in your Fireblocks Console. Additionally, you can retrieve information about them using the Co-signer APIs.
Step 1: Setup and configure your AWS environment
Proper configuration of your AWS environment is straightforward but must be performed step by step in the specified order. Any misconfiguration could compromise the Co-signer's functionality or security.
Required AWS account permissions
You must have the necessary AWS account permissions to enable network access to required domains and to create and configure the following resources:
- IAM Role
- Customer Managed Key (CMK)
- S3 bucket
- Nitro-capable EC2 machine
1.1. Allowlist domains
To ensure the Co-signer can be installed and operated successfully, add the following domains to your allowlist:
Domain | Owner |
---|---|
mobile-api.fireblocks.io | Fireblocks |
signurl.fireblocks.io | Fireblocks |
s3signurl.fireblocks.io | Fireblocks |
s3.{region}.amazonaws.com | AWS (Replace {region} with the applicable one) |
kms.{region}.amazonaws.com | AWS (Replace {region} with the applicable one) |
bootstrap.pypa.io | Python Software Foundation |
files.pythonhosted.org | Python Software Foundation |
pypi.org | Python Software Foundation |
pypi.python.org | Python Software Foundation |
Fireblocks-owned domains differ based on the specific Fireblocks SaaS environment you are connected to. If you are connected to the European or Swiss SaaS, update your allowlist according to the domains listed in the table below:
Fireblocks SaaS | Domains to Allow |
---|---|
Global | mobile-api.fireblocks.io signurl.fireblocks.io s3signurl.fireblocks.io |
Europe | eu2-mobile-api.fireblocks.io eu2-signurl.fireblocks.io eu2-s3signurl.fireblocks.io |
Swiss | eu-mobile-api.fireblocks.io eu-signurl.fireblocks.io eu-s3signurl.fireblocks.io |
Notes:
- For a better understanding of the Co-Signer's communication with the above URLs, refer to the AWS Nitro API Co-signer Architecture article.
- If you cannot support DNS IP whitelisting with an advanced firewall or within the cloud itself, you must allow egress traffic to any destination on port 443.
1.2. Setup and configure an IAM role
IAM roles are used to delegate access to your AWS resources. Create an IAM security role that ties everything together by granting only the necessary permissions to the specific resources.
- From the “Identity and Access Management (IAM)” page, select “Roles” and “Create role”. On the “Select trusted entity” page, select:
- Trusted entity type: AWS service
- Service or use case: EC2
- Click Next. On the “Add permissions” page, don’t make any selections.
- Click Next. Enter the role’s name and select “Create role” without changing the trust policy.
- Select the newly created role and copy the IAM ARN for the next steps. The IAM ARN has the following structure:
arn:aws:iam::{ACCOUNT-ID}:role/{ROLE-NAME}
When you finish, the “Permissions policies” section will be empty (as shown below). After setting up the S3 bucket and the Customer Managed Key (CMK) in the Key Management Service (KMS), you will return to it to add the required policies for those resources.

1.3. Setup and configure an S3 bucket
Create the S3 bucket that serves as the Co-signer's persistent storage.
- From the “Amazon S3” page, select “Create bucket”. Enter its name, leave everything else as default and create the bucket.
- Select the newly created bucket and on the bucket’s details page, select “Permissions”.
- In the “Bucket policy” section, select “Edit” and paste the following S3 policy.
- Click “Save changes” to complete the operation.
- Select the newly created bucket and copy the Bucket ARN for the next steps. The Bucket ARN has the following structure: arn:aws:s3:::{BUCKET-NAME}.
Make sure you replace the{BUCKET-NAME}
, {ACCOUNT-ID}
and {ROLE-NAME}
with the correct values.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Deny",
"Principal": "*",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject",
"s3:ListBucket",
"s3:ListBucketMultipartUploads",
"s3:AbortMultipartUpload",
"s3:GetObjectAcl",
"s3:PutObjectAcl",
"s3:RestoreObject"
],
"Resource": [
"arn:aws:s3:::{BUCKET-NAME}",
"arn:aws:s3:::{BUCKET-NAME}/*"
],
"Condition": {
"ArnNotEquals": {
"aws:PrincipalArn": "arn:aws:iam::{ACCOUNT-ID}:role/{ROLE-NAME}"
}
}
}
]
}
1.4. Setup and configure a KMS Customer Managed Key (CMK)
Create a customer-managed key (CMK) in KMS to safeguard the Co-signer’s MPC key shares.
Create the key
- Open the Key Management Service (KMS) page and click Create key.
- On the Configure key page, select the following options:
- Key type: Symmetric
- Key usage: Encrypt and decrypt
- Expand the Advanced options section and select the following:
- Key material origin: KMS
- Regionality: Single-Region key.
Note: Select the Multi-Region key only if the EC2 instance is in a different region.
- Click Next.
Add labels
- On the Add labels page, set a display name for the key in the Alias field.
For example:fireblocks-nitro-cosigner
. - Optional: Fill in the Description and Tags fields.
- Click Next.
Configure permissions
- On the Define key administrative permissions page:
- Leave the Key administrators section blank.
- Leave the Key deletion option checked.
- Click Next.
- On the Define key usage permissions page, leave the Key users section blank.
- Click Next.
Finalize the key
- On the Review page, scroll down to the Key policy section.
- Paste the KMS policy in the Key policy section.
- Click Finish.
Get the key ARN
- Select the newly created key.
- Copy the KMS ARN for the next steps.
The KMS ARN has the following structure: arn:aws:kms:{KEY-REGION}:{ACCOUNT-ID}:key/{KEY-ID}
.
Ensure you replace {ACCOUNT-ID}
and {KEY-ID}
with the correct values.
Understanding the policy warning
When you paste the KMS policy, you might see the following warning:
Unsupported Action For Condition Key
The following actions:
kms:GetKeyPolicy
are not supported by the condition keykms:RecipientAttestation:PCR8
. The condition will not be evaluated for these actions. We recommend that you move these actions to a different statement without this condition key.
Why you can safely ignore this warning:
- The
kms:RecipientAttestation:PCR8
condition is only evaluated on KMS calls that include an attestation report from the enclave. - AWS ignores the condition on actions that never carry a report in the request (such as
GetKeyPolicy
andEncrypt
) and emits this advisory. - Security impact: None. All sensitive operations (
Decrypt
,DeriveSharedSecret
,GenerateDataKey
,GenerateRandom
) remain protected by the PCR8 attestation check. - Functionality impact: Unaffected. This behavior is by design, and the key can be used by the Fireblocks Nitro Co-signer immediately.
The value for PCR8 varies based on the Fireblocks SaaS environment to which you are connected. Copy the correct value into the CMK policy:
Fireblocks SaaS | {PCR8-VALUE} |
---|---|
Global | da1d9eca20ce98ab4fdbc51f8e5a2307fd4c61829b7d8bff40976cd6676862c8f3476ff4bdd0f65ecf4a48d6eb3099a8 |
Europe | fffc94d68a150b49dc39b23954c793cd1a4f7972f528a1ee258dc130b6cd9454e29ae72ef66bd9697a55e774e17a2d49 |
Swiss | 69b1fbe9fb4ea49e084fe6f9f9623d871bd22ceb5efad47b1a8d3708e6674868cad8bf088ced3976c2194360c7d58219 |
{
"Version": "2012-10-17",
"Id": "key-consolepolicy-4",
"Statement": [
{
"Sid": "Enable enclave data processing for specific role",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::{ACCOUNT-ID}:role/{ROLE-NAME}"
},
"Action": [
"kms:Decrypt",
"kms:Encrypt",
"kms:GenerateDataKey",
"kms:GenerateDataKeyPair",
"kms:GenerateDataKeyWithoutPlaintext",
"kms:GenerateDataKeyPairWithoutPlaintext",
"kms:GenerateRandom",
"kms:GetKeyPolicy"
],
"Resource": "*",
"Condition": {
"StringEqualsIgnoreCase": {
"kms:RecipientAttestation:PCR8": "{PCR8-VALUE}"
}
}
},
{
"Sid": "Allow GetKeyPolicy to co-signer",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::{ACCOUNT-ID}:role/{ROLE-NAME}"
},
"Action": "kms:GetKeyPolicy",
"Resource": "*"
},
{
"Sid": "Allow policy management to root user",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::{ACCOUNT-ID}:root"
},
"Action": [
"kms:DescribeKey",
"kms:GetKeyPolicy",
"kms:PutKeyPolicy",
"kms:CreateAlias"
],
"Resource": "*"
}
]
}
1.5. Edit the IAM role's policy
Return to the IAM service and select the IAM role you created.
- In the “Permissions policies” section, select “Attach policies”, select the
AmazonSSMManagedInstanceCore
policy and then click “Add permissions”.

- In the “Permissions policies” section, select “Create inline policy” and choose “JSON” in the “Policy editor” section. Paste the following IAM policy in there. Finally, create the policy and assign it a name.
Make sure you replace the {BUCKET-NAME}
, {KEY-REGION}
, {ACCOUNT-ID}
and {KEY-ID}
with the correct values.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "ListBuckets",
"Effect": "Allow",
"Action": "s3:ListAllMyBuckets",
"Resource": "*"
},
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetBucketLocation"
],
"Resource": "arn:aws:s3:::{BUCKET-NAME}"
},
{
"Sid": "WritePermissionsOnBucket",
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:PutObjectAcl",
"s3:GetObject",
"s3:GetObjectAcl",
"s3:DeleteObject"
],
"Resource": "arn:aws:s3:::{BUCKET-NAME}/*"
},
{
"Sid": "AccessToTheKey",
"Effect": "Allow",
"Action": [
"kms:Encrypt",
"kms:Decrypt",
"kms:GenerateDataKey",
"kms:GenerateDataKeyPair",
"kms:GenerateDataKeyWithoutPlaintext",
"kms:GenerateDataKeyPairWithoutPlaintext",
"kms:GenerateRandom",
"kms:GetKeyPolicy"
],
"Resource": [
"arn:aws:kms:{KEY-REGION}:{ACCOUNT-ID}:key/{KEY-ID}"
]
}
]
}
1.6. Setup and configure an EC2 instance
- Create a Nitro-capable EC2 instance by selecting “Launch instances” from the EC2 “Instances” page.
Enter its name and choose the Amazon Machine Image (AMI) "Amazon Linux 2023 AMI" with 64-bit (x86) architecture.

- In the “Instance type” section, select
c5.xlarge
(4vCPUs & 8GB RAM) orc5a.xlarge
if the former is not available in your region. - In the “Network settings” section, set where to allow SSH traffic from. We recommend restricting access as much as possible.
- In the “Advanced details” section:
- IAM instance profile: select the IAM Role you created in the previous steps.
- Nitro Enclave: select “Enable”. Note that this field is grayed if you selected an instance type that is incompatible with Nitro.
- Metadata version: ensure to select “V2 only (token required)”.
- Metadata response hop limit: ensure it is kept to a minimum of 2 (two).
When you’re done, launch the instance.
1.7. Additional security recommendations
It is highly recommended to control user and network access to your AWS environment and EC2 instance by properly configuring your VPC and security groups. Learn more about controlling network traffic in the AWS documentation.
See API Co-signer security checklist and recommended defense and monitoring systems for further information.
Step 2: Add a Co-signer to the workspace using an API user
Follow the instructions to add a new Co-signer to the workspace. Ensure you copy to your clipboard the following items, which you will use during the installation process:
- The API user's pairing token
- The download link of the Co-signer's installation script
Step 3: Install and connect the Co-signer to the workspace
3.1. Connect to your EC2 Instance
Note: You must have root privileges on the EC2 instance to install the Co-signer. Ensure you are logged in as a root user or use
sudo
to execute the installation commands.
Connect to your EC2 instance with your preferred method.
3.2. Download and unpack the installation package
Using the download link of the AWS Nitro Co-signer installation package you copied from the Console, run the wget
command to download the package directly to your machine.
Paste the appropriate URL into the following command:
wget -O nitro-cosigner.tar.gz "URL"
Unpack the installation package by running the following command:
tar -xzvf nitro-cosigner.tar.gz
3.3. Run the installation script
The installation package contains an Enclave Image File (EIF) and installation scripts. To install the Co-signer, navigate to the directory where the installation package was unpacked and run:
./install.sh
You will be prompted to enter the following parameters:
- Pairing token: enter the API user’s pairing token that you copied from the Fireblocks Console. This token pairs the API user with the Co-signer, establishing the connection between the Co-signer and the workspace.
- S3 bucket name: enter the name of the S3 bucket that you created before
- Note: Please make sure to add only the bucket name and not the full ARN of the bucket. If your bucket ARN is
arn:aws:s3:::{BUCKET-NAME}
, you need to enter only{BUCKET-NAME}
- Note: Please make sure to add only the bucket name and not the full ARN of the bucket. If your bucket ARN is
- CMK ARN: enter the Amazon Resource Name (ARN) of the CMK that you created before
At this stage, you will have the option to configure the Callback Handler parameters for the API user connecting the Co-signer to the workspace. This feature is optional. You can configure it later through the Console, APIs, or locally from the Co-signer's host machine.
For detailed instructions on setting up your Callback Handler's interface to the Co-signer and implement its logic and code, refer to the Setup API Co-signer Callback Handler section.
Once the installation is complete, the Co-signer will automatically start running.
Note:
The Nitro cosigner installation script installs the below components as services:
- cosigner
- cosigner-networking
- cosigner-logging
- cosigner-env-export
The cosigner service is started up during the execution of the installation script, and is also enabled to start on boot, which in turn starts up the three remaining services.
3.4. Approve MPC key shares for the API user
If the API user used to pair with the Co-Signer and connect it to your workspace has an Admin or User role, the workspace owner will receive a notification. This notification will prompt them to approve a new MPC key share request for that API user using the Fireblocks mobile app.
You can now see the Co-signer you installed in the Co-signers tab within the Console's Developer Center. Observe it is online and that the API user is paired to it.
To check the Co-signer's status and observe the logs, see the AWS Nitro Co-signer Maintenance article.