1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-05 02:35:33 +02:00
tldr/pages/common/cli53.md
Managor d26025f645
cli53: add proper option placeholders and fix example link (#17335)
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
2025-07-23 22:07:23 +05:30

36 lines
921 B
Markdown

# cli53
> Command line tool for Amazon Route 53.
> More information: <https://github.com/barnybug/cli53>.
- List domains:
`cli53 list`
- Create a domain:
`cli53 create {{example.com}} --comment "{{comment}}"`
- Export a bind zone file to `stdout`:
`cli53 export {{example.com}}`
- Create a `www` subdomain pointing to a relative record in the same zone:
`cli53 {{[rc|rrcreate]}} {{example.com}} {{'www 300 CNAME lb'}}`
- Create a `www` subdomain pointing to an external address (must end with a dot):
`cli53 {{[rc|rrcreate]}} {{example.com}} {{'www 300 CNAME lb.example.com.'}}`
- Create a `www` subdomain pointing to an IP address:
`cli53 {{[rc|rrcreate]}} {{example.com}} {{'www 300 A 150.130.110.1'}}`
- Replace a `www` subdomain pointing to a different IP:
`cli53 {{[rc|rrcreate]}} --replace {{'www 300 A 150.130.110.2'}}`
- Delete a record A:
`cli53 {{[rd|rrdelete]}} {{example.com}} {{www}} {{A}}`