Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kassner/route53-ddns

Linux DDNS Updater for AWS Route53
https://github.com/kassner/route53-ddns

Last synced: 2 months ago
JSON representation

Linux DDNS Updater for AWS Route53

Awesome Lists containing this project

README

        

Route53 DDNS
============

Linux DDNS Updater for AWS Route53

Setup
-----

Place the files in your system and edit `aws_secrets` with your IAM keys and `run.sh` to configure the Hosted Zone ID and subdomain.

IAM Policy
----------

The following policy is needed in order to update the IP Address properly.

```
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1398798645000",
"Effect": "Allow",
"Action": [
"route53:ChangeResourceRecordSets"
],
"Resource": [
"arn:aws:route53:::hostedzone/HOSTEDZONEID"
]
}
]
}
```

You have to replace `HOSTEDZONEID` by the Hosted Zone ID of your domain.