Daestro

Blog Documentation Changelog FAQ Pricing Instances
Login
Blog Documentation Changelog FAQ Pricing Instances
Login
skip to the main content
Getting Started About Cloud Auth Compute Environment Job Queue Container Registry Auth Job Definition Job Compute Spawn Features Cron Jobs Schedule Jobs Cloud Providers Amazon Web Services DigitalOcean Linode / Akamai Vultr Self-hosted Compute Docker API Create API Key Job Submit Job Detail Cancel Job
Home/Documentation/Cloud Providers/

Amazon Web Services

Table of Contents
  1. Step 1: Create an Access Key in Your AWS Account
  2. Step 2: Add Your AWS Credentials to Daestro
  3. Step 3: Create Your First AWS Compute Environment

Amazon Web Services (AWS) is a large cloud platform with a wide range of services. It scales well and is reliable, and a lot of teams run their applications on it.

Managing those resources directly can get complicated. Daestro gives you a simple interface to launch and manage EC2 instances, so you do not have to be an AWS expert. If you also use DigitalOcean or Linode, you can run jobs on those providers and AWS from the same place. You spend less time configuring infrastructure and more time on the jobs and applications.

If you are evaluating AWS for batch processing, see Daestro vs AWS Batch.


Step 1: Create an Access Key in Your AWS Account

Daestro needs an IAM user in your AWS account with permission to manage resources. Give that user only the access Daestro needs.

  1. Log in to your AWS Console.
  2. Open the IAM (Identity and Access Management) service. Type IAM in the main search bar if you cannot find it.
  3. In the IAM dashboard, click Users in the left-hand menu, then click Create user.
  4. Set user details:
    • Give the user a name you will recognize, like daestro-integration-user.
    • Do not check “Provide user access to the AWS Management Console”. This user is for programmatic access only.
    • Click Next.
  5. Set permissions:
    • Select Attach policies directly.
    • For most people, the simplest policy is AmazonEC2FullAccess. Search for it and check the box next to it.
    • Click Next.
Advanced: Creating a Custom IAM Policy (Recommended)

You can create a custom policy that grants only the EC2 permissions Daestro needs, limited to one region.

  1. On the Set permissions page, select Create policy. This opens a new tab.

  2. Click the JSON tab.

  3. Delete the existing content and paste the JSON below. Replace "us-east-1" with the AWS region you intend to use.

    {
      "Version": "2012-10-17",
      "Statement": [
        {
          "Sid": "DaestroCorePermissions",
          "Effect": "Allow",
          "Action": ["ec2:*"],
          "Resource": "*",
          "Condition": {
            "StringEquals": {
              "ec2:Region": "us-east-1"
            }
          }
        }
      ]
    }
  4. Click Next: Tags, then Next: Review.

  5. Give the policy a name, like Daestro-EC2-Restricted-Policy, and click Create policy.

  6. Close this tab and return to the IAM user creation tab. Click the refresh button and search for the policy you just created. Check the box next to it.

Important: If you use a custom region-locked policy, when you create Compute Environments in Daestro you must select the region your policy is authorized for. Otherwise your jobs will fail.

  1. Review the details on the final screen and click Create user.
  2. AWS then shows the Access key ID and Secret access key. This is the only time you will see the secret key.
    • Click Show under Secret access key.
    • Copy both the Access key ID and the Secret access key and store them somewhere safe. You will need them in the next step.

Step 2: Add Your AWS Credentials to Daestro

  1. Log in to your Daestro Console.
  2. Open Cloud Auth from the main menu.
  3. Click Add New and select AWS from the list of providers.
  4. Fill in the form:
    • Cloud Auth Name: a name you will recognize, like My AWS Account.
    • Access Key ID: the Access key ID you copied from AWS.
    • Secret Access Key: the Secret access key you copied from AWS.

Credentials you save in Daestro are encrypted with AES-256 when stored (at rest) and sent over TLS (in transit).

  1. Click Save.

Your AWS account is now linked to Daestro.


Step 3: Create Your First AWS Compute Environment

A Compute Environment in Daestro is the virtual server where your jobs run.

  1. In the Daestro Console, open Compute Environment.
  2. Click Create New.
  3. Configure the server:
    • Name: something descriptive, like aws-us-east-prod.
    • Cloud Auth: the AWS credential you just created (for example, My AWS Account).
    • Instance Type: the size of the server. This sets CPU, RAM, and cost. For testing, t2.micro or t3.micro is a cheap starting point.
    • Location: the AWS region to launch in (for example, us-east-1, eu-west-2).
    • Storage (GB): the size of the server’s hard drive (EBS volume) in gigabytes.
    • Assign Public IPv4: check this if the job needs to be reachable from the public internet. AWS now charges for public IPv4 addresses, so only enable it if you need it.
  4. Click Create.

Daestro provisions an EC2 instance in your AWS account with those settings. When the status is Ready, you can assign jobs to it.

Next

DigitalOcean

Daestro © 2026

Contact

hello@daestro.com

Legal
Terms of UsePrivacy Policy
Resources
Blog Documentation FAQ Changelog Instances
Helpful Articles
Batch Jobs Cron Jobs BYOC vs AWS Batch
Social
X (Twitter)Discord
2026-09-11T10:40:32.368556062Z