Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kassner/route53-ddns
- Owner: kassner
- License: other
- Created: 2014-04-29T19:32:49.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-29T19:44:12.000Z (over 10 years ago)
- Last Synced: 2023-03-11T15:37:49.199Z (almost 2 years ago)
- Language: Perl
- Size: 141 KB
- Stars: 12
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.