{% extends "base.html" %} {% block title %}42 Minutes in the Cloud -- Instance Launched{% endblock %} {% block header %}

header of course

{% endblock %} {% block content %}

42 Minutes in the Cloud

{% if instance.ip %}

Alright, you now have an Ubuntu Server running in Amazon EC2!


You can SSH to your Cloud Server using:

    ssh ubuntu@{{instance.ip}}

{% if instance.pubkeys %}

The instance's SSH key fingerprint is

{{instance.pubkeys}}
{% else %}

The instance has not yet registered its SSH key fingerprints

{% endif %}

Now what?

{% if config.info_tmpl %} {% include config.info_tmpl %} {% endif %}

You might be interested in:

{% else %}

We are configuring your instance. Please be patient...

{% endif %} {% endblock %}