I guess you are talking about two different things: PaaS (like GAE and Azure) and IaaS (like EC2). You need first to determine if you need a PaaS or an IaaS and then decide which one is the best for your project. Sebastian Stadil, founder at Scalr, a cloud management software, wrote a great answer on Quora about this.
I've noticed two trends: Bootstrapped startups prefer cost control
over speed, funded startups prefer the reverse. Large startups benefit
more from customization than smaller ones.
Platform-as-a-Service (PaaS) are great because they don't require
operations expertise, offer a free tier, and make release management
(think deploying code and rolling back) quite easy.
Infrastructure-as-a-Service (IaaS) is awesome too, because all the
traditional IT resources (storage, compute, network) are abstracted
and can be modified programmatically: an architect's wet dream.
Cloud Management is software that supplements IaaS to make it easier
to use, give more visibility, increase agility, and keep things
organized (see Cloud Management: What is "Cloud Management" and what
areas does it cover?). I have bias here since I work in the field, but
I find it awesomest. :-)
So, where should your startup run its operations?
My opinion is that platforms are the better choice when starting out,
regardless of funding. They are cheaper, and save time. I believe it's
even worth it to adapt your application to use one. Make sure there's
a clear path off however, so you don't have to compromise on
development velocity down the road, should you ever need to move off.
This is especially true of the datastore / database you use. Some
great platforms are Heroku and Cloudfoundry (built by, among others,
the awesome Derek Collison)
If for some reason you can't use a platform when you start out, you
should use cloud services for the components you can, to reduce the
amount of time you spend on operations. Like using MongoLab instead of
running Mongo yourself. Like Cloudkick instead of Nagios. Like Xeround
instead of MySQL.
You'll want to complement your setup with tools to keep you agile,
like Capistrano for deployments, Jenkins for continuous deployment,
and Loggly for log aggregation.
As you grow, you'll start to value flexibility and freedom more, until
the point where your platform no longer works for you. It's at that
point that you should thank yourself for having planned for a
potential migration early on.
Now that you are operating cloud infrastructure, you're going to:
Spend a ton of time on repetitive tasks. Lose track of where things
are, and what they correspond to. Wonder how much your applications
are costing you. More here Sebastian Stadil's answer to What cloud
management software are people using today? What are their common use
cases?
So you'll want to get a cloud management tool that will help you keep
the agility you had when you started, while benefitting from that
newfound flexibility and freedom.
The most popular ones are: RightScale was I believe the first to
market, starting out in 2006. They have an impressive client roster.
enStratus similarly was the first to build a cloud management tool
specifically for the enterprise market. They did great work at Korea
Telecom I heard. Scalr (disclaimer: my company) has been quite popular
among web startups (Lockerz, MuleSoft, HomeRun) and manages properties
of brand name corporations (Disney, Samsung, Coca-Cola). It's
available hosted, but the source code is released under the open
source Apache 2 license.
Sebastian