How to Get and Use an AWS Voucher Without the Runaround
AWS vouchers are the fastest way to spin up infrastructure without denting your runway. Here’s what they really cover, where to find them, and how to stop them from expiring unused.
The quiet power of an AWS voucher
An AWS voucher is just a string of credits, but for an early-stage team it’s the difference between shipping a proof-of-concept on Tuesday and waiting three weeks for procurement. We talk to founders who treat AWS credits like mystery money—something they know exists but don’t fully trust. That hesitation costs real build time.
At Sapior, we sit close to the metal with developers who live inside AWS. We see vouchers used brilliantly and we see them expire because nobody mapped them to a workload. This post is a practical map.
What an AWS voucher actually covers
AWS promotional credits—what most people call vouchers—are applied against your account’s compute, storage, and data transfer charges. They are not cash, and they do not cover:
Reserved Instance upfront fees (usually)
AWS Support plan charges
AWS Marketplace purchases from third-party vendors
Domain registration or Route 53 domain fees in some programs
If your bill includes an EC2 `t3.medium` running 24/7 and a couple of S3 buckets, a $5,000 voucher from a startup accelerator might carry you for a year. If you’re running GPU instances for fine-tuning, it might cover a weekend. Run the math before you celebrate.
Where AWS vouchers actually come from
1. Startup programs (the most reliable source)
AWS Activate is the canonical path. If you’re backed by a participating venture fund, accelerator, or incubator, you can get anywhere from $1,000 to $100,000 in credits. Techstars, Y Combinator, and 500 Global portfolio companies routinely qualify. The credits are tied to the AWS account ID, so don’t create a new account after you’re approved.
2. Educational and research grants
AWS Cloud Credits for Research and the AWS Educate program issue vouchers to students, educators, and researchers. The amounts are smaller—often a few hundred dollars—but they renew and don’t require a startup pitch deck.
3. Community events and hackathons
MLH (Major League Hacking) hackathons, AWS Summits, and re:Invent workshops sometimes hand out voucher codes. These are typically $25–$100, short-lived, and meant to cover a weekend project. Treat them like a free trial, not an ops budget.
4. Partner and consulting promotions
AWS consulting partners occasionally distribute vouchers alongside a proof-of-concept engagement. If you’re evaluating a SaaS tool that runs on your own AWS account, the vendor might give you credits to offset the infrastructure cost of the trial. This is exactly the pattern we think makes sense: the tooling you use should pay for the cloud it runs on.
The Sapior lens: vouchers as a deployment primitive
When a developer gets a voucher, they usually think “how do I spend this?” A better question is “what do I need to deploy to validate my idea, and can I get the credits to cover the blast radius?” Sapior’s own infrastructure preview environments are ephemeral by design—they spin up when a PR opens and tear down when it merges. That pattern makes every voucher dollar go further because you’re not paying for idle capacity overnight.
If you have an AWS voucher coming, consider mapping it to a specific, time-boxed workload: a staging environment that mirrors production, a one-off data migration, or a benchmarking suite. Don’t let it dissolve into a long-running dev instance nobody touches.
Common traps that kill your voucher balance
**EBS volumes that outlive EC2 instances.** Stop an instance, the EBS volume keeps billing. Snapshot it and delete the volume.
**NAT Gateways left running in idle VPCs.** A NAT Gateway costs ~$32/month just to exist. If you don’t need outbound IPv4 from private subnets, kill it.
**CloudWatch Logs with infinite retention.** Logs from testing can spiral. Set a 7- to 30-day retention policy.
**Multi-AZ RDS for prototypes.** You don’t need a standby replica when you’re validating schema design. Single-AZ, burstable instance, and automated snapshots.
How to check your voucher balance and expiration
Go to the AWS Billing console, then Credits. You’ll see each voucher’s name, remaining balance, expiration date, and the percentage used. If you have multiple vouchers, AWS applies them in FIFO order by default. Expiration is the silent killer—AWS does not send nag emails the day before. Set a calendar reminder 30 days out.
> Real talk from the AWS Activate FAQ: “Promotional credits expire 6 months after the application submission date, unless otherwise stated.” If you applied in March, that clock is ticking by September.
A quick word on tax
In some jurisdictions, AWS credits are considered taxable income. This usually doesn’t bite individuals with small voucher amounts, but if your startup gets $100,000 in Activate credits, talk to your accountant. AWS issues a 1099-NEC for U.S. entities if required.
Getting more mileage: combine with free tier
AWS Free Tier usage is applied before promotional credits. That means your voucher doesn’t get touched until you exceed Free Tier limits. If you’re prototyping on a single `t3.micro`, you might burn zero voucher dollars for months. Structure your experiments around Free Tier boundaries and use the voucher as a buffer, not the baseline.
Sapior’s quick answer to “I just got a voucher, now what?”
1. Screenshot the credit balance page with the expiration date visible.
2. Pick one workload you need to deploy this week—just one.
3. Provision it with Infrastructure as Code (Terraform, Pulumi, or at minimum a CloudFormation template) so you can tear it down cleanly.
4. Build a kill switch: a budget alert at 50% of the voucher value and another at 80%.
5. Deploy, measure, and destroy when the experiment ends.
AWS vouchers are not gifts. They’re time-limited, purpose-bound fuel. Use them to accelerate a decision, not to hoard compute for later. The best close we’ve seen: a team used $5,000 in credits to run a performance benchmark against a competitor’s architecture, won the contract, and didn’t need credits again. That’s the play.