website: add examples, intro button cleanup
This commit is contained in:
parent
91e78c19dc
commit
84941de974
|
@ -0,0 +1,25 @@
|
||||||
|
---
|
||||||
|
layout: "intro"
|
||||||
|
page_title: "Basic Two-Tier AWS Architecture"
|
||||||
|
sidebar_current: "examples-aws"
|
||||||
|
---
|
||||||
|
|
||||||
|
# Basic Two-Tier AWS Architecture
|
||||||
|
|
||||||
|
This provides a template for running a simple two-tier architecture on Amazon
|
||||||
|
Web services.
|
||||||
|
|
||||||
|
The basic premise is you have stateless app servers running behind
|
||||||
|
and ELB serving traffic. State for your application is stored in an RDS
|
||||||
|
database.
|
||||||
|
|
||||||
|
This ignores deploying and getting data onto the application
|
||||||
|
servers intentionally to simplify. However, you could do so either via
|
||||||
|
[provisioners](/docs/provisioners/index.html) or by pre-baking configured
|
||||||
|
AMIs with [Packer](http://www.packer.io).
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
```
|
||||||
|
FOOBAR
|
||||||
|
```
|
|
@ -0,0 +1,35 @@
|
||||||
|
---
|
||||||
|
layout: "intro"
|
||||||
|
page_title: "Example Configurations"
|
||||||
|
sidebar_current: "examples"
|
||||||
|
---
|
||||||
|
|
||||||
|
# Example Configurations
|
||||||
|
|
||||||
|
These examples are designed to help you understand some
|
||||||
|
of the ways Terraform can be used.
|
||||||
|
|
||||||
|
Other than configuring the provider (with, for example, an API key),
|
||||||
|
the examples are ready to run as-is.
|
||||||
|
|
||||||
|
|
||||||
|
<div class="alert alert-block alert-warning">
|
||||||
|
<p>
|
||||||
|
<strong>Note:</strong> The examples use real providers that launch
|
||||||
|
<strong>real</strong> resources. That means they can cost money to
|
||||||
|
experiment with. To avoid unexpected charges, be sure to understand the price
|
||||||
|
of resources before launching them, and verify any unneeded resources
|
||||||
|
are cleaned up afterwards.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
Experimenting in this way can help you learn how the Terraform lifecycle
|
||||||
|
works, as well as how to repeatedly create and destroy infrastructure.
|
||||||
|
|
||||||
|
If you're completely new to Terraform, we recommend reading the
|
||||||
|
[getting started guide](/intro/getting-started.html) before diving into
|
||||||
|
the examples. However, due to the intuitive configuration Terraform
|
||||||
|
uses it isn't required.
|
||||||
|
|
||||||
|
To use these examples, Terraform must first be installed on your machine.
|
||||||
|
You can install Terraform from the [downloads page](/downloads.html).
|
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="description" content="Service discovery and configuration made easy. Distributed, highly available, and datacenter-aware.">
|
<meta name="description" content="">
|
||||||
|
|
||||||
<link rel="shortcut icon" href="/images/favicon.png">
|
<link rel="shortcut icon" href="/images/favicon.png">
|
||||||
|
|
||||||
|
|
|
@ -71,6 +71,27 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li<%= sidebar_current("examples") %>>
|
||||||
|
<a href="/intro/examples/index.html">Example Configurations</a>
|
||||||
|
<ul class="nav">
|
||||||
|
<li<%= sidebar_current("examples-aws") %>>
|
||||||
|
<a href="/intro/examples/aws.html">Basic Two-Tier AWS Architecture</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li<%= sidebar_current("examples-cross-provider") %>>
|
||||||
|
<a href="/intro/examples/cross-provider.html">Cross Provider</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li<%= sidebar_current("examples-count") %>>
|
||||||
|
<a href="/intro/examples/count.html">Count Parameter</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li<%= sidebar_current("examples-consul") %>>
|
||||||
|
<a href="/intro/examples/consul.html">Consul</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -194,7 +194,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.right {
|
.right {
|
||||||
//margin-top: 12px;
|
margin-top: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -887,6 +887,9 @@ body.page-home #footer {
|
||||||
#cta .intro .left {
|
#cta .intro .left {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
#cta .intro .right {
|
||||||
|
margin-top: 2px;
|
||||||
|
}
|
||||||
#cta p {
|
#cta p {
|
||||||
padding-top: 4px;
|
padding-top: 4px;
|
||||||
color: white;
|
color: white;
|
||||||
|
|
Loading…
Reference in New Issue