Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix links in aws.adoc #525

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions userguide/tutorials/aws.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@
<h5 class="card-title">Single-Tier single AMI with MariaDB</h5>
<p class="card-text">Perfect for prototyping and test environments</p>
<a href="https://aws.amazon.com/marketplace/pp/B083LYVG9H?ref=_ptnr_doclanding_" onclick="getOutboundLink('https://aws.amazon.com/marketplace/pp/B083LYVG9H?ref=_ptnr_doclanding_'); return false;" class="btn btn-primary">Launch</a>
<p class="card-text"><a href="https://docs.killbill.io/latest/aws-singletier.html">Docs</a></p>
<p class="card-text"><a href="https://docs.killbill.io/latest/how-to-set-up-a-single-tier-system.html">Docs</a></p>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Multi-Tier CloudFormation with Amazon Aurora</h5>
<p class="card-text">Production ready setup in minutes <strong>(most popular)</strong></p>
<a href="https://aws.amazon.com/marketplace/pp/prodview-nochv5omslmds?ref=_ptnr_doc_" onclick="getOutboundLink('https://aws.amazon.com/marketplace/pp/prodview-nochv5omslmds?ref=_ptnr_doclanding_'); return false;" class="btn btn-primary">Launch</a>
<p class="card-text"><a href="https://docs.killbill.io/latest/aws-cf.html">Docs</a></p>
<p class="card-text"><a href="https://docs.killbill.io/latest/how-to-set-up-a-cloud-formation-system.html">Docs</a></p>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Multi-Tier single AMI with external database</h5>
<p class="card-text">Fully customizable production environment (advanced users)</p>
<a href="https://aws.amazon.com/marketplace/pp/prodview-rtgjip6tx3oea" onclick="getOutboundLink('https://aws.amazon.com/marketplace/pp/prodview-rtgjip6tx3oea'); return false;" class="btn btn-primary">Launch</a>
<p class="card-text"><a href="https://docs.killbill.io/latest/aws-multitier.html">Docs</a></p>
<p class="card-text"><a href="https://docs.killbill.io/latest/how-to-set-up-a-multi-tier-system.html">Docs</a></p>
</div>
</div>
</div>
Expand All @@ -45,15 +45,15 @@ So, which one should you choose? Here is a little more information to help you d

**Single AMI Deployments** come in 2 flavors:

* `Single-Tier`: To help you to quickly get started, the single-tier deployment offers an AMI that provides everything you need and can be launched with a **one-click** button. In this option the Kill Bill server, KAUI and a MariaDB (MySQL) database run on one single node. This is very convenient and inexpensive to get started, but is not recommended for production deployments.
* `Single-Tier`: To help you to quickly get started, the single-tier deployment offers an AMI that provides everything you need and can be launched very easily . In this option the Kill Bill server, KAUI and a MariaDB (MySQL) database run on one single node. This is very convenient and inexpensive to get started, but is not recommended for production deployments.
* `Multi-Tier`: In this mode, there is also a single AMI for both Kill Bill server and KAUI, but the deployment will use more than one node (typically two). This option requires a bit more setup and depends on an external database. The use of multiple nodes is intended to provide redundancy and to eliminate downtime during upgrades.

The Single AMI Deployments are a great way to easily get started, but they are often not the best choices for production deployments. Please refer to https://docs.killbill.io/latest/aws-singletier.html[Installation: Single-Tier] or https://docs.killbill.io/latest/aws-multitier.html[Installation: Multi-Tier] for further information.
The Single AMI Deployments are a great way to easily get started, but they are often not the best choices for production deployments. Please refer to https://docs.killbill.io/latest/how-to-set-up-a-single-tier-system.html[How to Setup a Single-Tier System] or https://docs.killbill.io/latest/how-to-set-up-a-multi-tier-system.html[How to Setup a Multi-Tier System] for further information.

**Cloud Formation Deployments** use AWS CloudFormation to provide a better integration with the rest of the AWS ecosystem. These deployments include separate AMIs for the Kill Bill Server and for Kaui, and rely on auto-scaling groups to scale both Kill Bill and KAUI instances independently. They make use of the Amazon Aurora RDS database, a version of MySQL that is also PostgreSQL compatible. They also make use of CloudWatch for metrics.
Cloud Formation Deployments also offer a **one-click** button deployment for the whole stack, including the required database. They are a good option to set up a production-ready deployment with minimum efforts. Please refer to https://docs.killbill.io/latest/aws-cf.html[Installation via Cloud Formation] for further information.
Cloud Formation Deployments also offer a **one-click** button deployment for the whole stack, including the required database. They are a good option to set up a production-ready deployment with minimum efforts. Please refer to https://docs.killbill.io/latest/how-to-set-up-a-cloud-formation-system.html[How to Setup a CloudFormation System] for further information.

The rest of this document focuses on configurations that apply to both types of deployments.
The rest of this document describes configurations that apply to both types of deployments.

== Default configuration

Expand All @@ -63,7 +63,7 @@ A few plugins are also pre-configured, but not installed. These include `email-n

=== Invoice templates

Kill Bill allows generating an HTML template corresponding to an invoice. Invoice templates can be customized. You can read the https://docs.killbill.io/latest/invoice_templates.html[Invoice Templates] document to know more.
Kill Bill allows you to generate an HTML template corresponding to an invoice. Invoice templates can be customized. You can read the https://docs.killbill.io/latest/invoice_templates.html[Invoice Templates] document to learn more.

=== Email notifications plugin

Expand Down
Loading