Sha256: 9aebe526d87d89caa82a86251575b33c1f4c6f3577f08c37c6899da3ac65b642

Contents?: true

Size: 825 Bytes

Versions: 5

Compression:

Stored size: 825 Bytes

Contents

---
title: Route53 Support
nav_order: 29
---

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

{% include prev_next.md %}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ufo-5.0.0 docs/_docs/extras/route53-support.md
ufo-4.6.3 docs/_docs/extras/route53-support.md
ufo-4.6.2 docs/_docs/extras/route53-support.md
ufo-4.6.1 docs/_docs/extras/route53-support.md
ufo-4.6.0 docs/_docs/extras/route53-support.md