Sha256: 430fa2e6baced3157a140cd878ce1e63df468532756aaa84ec02e2e7df6ac37c

Contents?: true

Size: 1.03 KB

Versions: 3

Compression:

Stored size: 1.03 KB

Contents

---
title: Route53 Support
---

Ufo can create a "pretty" route53 record and set it's value to the created ELB DNS name. This is done by configuring the `.ufo/settings/cfn/default.yml` file. Example:

```yaml
dns:
  name: "{stack_name}.mydomain.com."
  hosted_zone_name: mydomain.com. # dont forget the trailing period
```

The `{stack_name}` variable gets substituted with the CloudFormation stack name launched by ufo. So for example:

    ufo ship demo-web

Results in:

    "{stack_name}.mydomain.com." => "development-demo-web.mydomain.com."

**IMPORTANT**: The route53 host zone must already exist. You can create route53 hosted zone with the cli like so:

    aws route53 create-hosted-zone --name mydomain.com --caller-reference $(date +%s)
    aws route53 list-hosted-zones

<a id="prev" class="btn btn-basic" href="{% link _docs/ssl-support.md %}">Back</a>
<a id="next" class="btn btn-primary" href="{% link _docs/redirection-support.md %}">Next Step</a>
<p class="keyboard-tip">Pro tip: Use the <- and -> arrow keys to move back and forward.</p>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ufo-4.3.1 docs/_docs/route53-support.md
ufo-4.3.0 docs/_docs/route53-support.md
ufo-4.2.0 docs/_docs/route53-support.md