You can completely uninstall Convox and DocSpring from your AWS account by running a few simple commands.

<aside> 💡

It is 100% safe to run the uninstall command in an AWS account that has other resources. This will only delete resources that Convox created, and it won’t touch any other resources in your account.

</aside>

To uninstall DocSpring Enterprise, run the following steps (in this order):

  1. Disable "Termination Protection" for any resources where it was enabled.

  2. Delete all files in the S3 bucket used for template PDFs and submissions:

    # You will need an AWS Access Token with admin permissions
    export AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID
    export AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY
    aws s3 rm s3://$S3_AWS_UPLOADS_S3_BUCKET --recursive
    
  3. Delete the docspring Convox app:

    convox apps delete docspring
    
  4. Uninstall Convox (deletes all AWS resources managed by Terraform and Convox):

    convox rack uninstall aws <your rack name>