mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-07-29 09:02:38 -04:00
[PR #715] [MERGED] feat(aws): add support to route53 simple records #813
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/qdm12/ddns-updater/pull/715
Author: @marcelohpf
Created: 5/9/2024
Status: ✅ Merged
Merged: 6/15/2024
Merged by: @qdm12
Base:
master← Head:feat/aws-simple-record📝 Commits (10+)
a2697b5feat(aws): add support to route53 simple records7cfe867chore(route53): improve naming conventions7c41a38chore(route53): replace sdk by REST API calls9df677afix(route53): change domain ttl to int32 and validate too low9454d3edocs: change default ttl from 60 ro 30059628addocs: change indentation for user permissions sectionfc38eb5chore: sort route53 alphabetically in list23468d1docs(readme): add route53810eefdchore: inline route53-specific header setting40b2886chore: fix lint errors📊 Changes
11 files changed (+671 additions, -0 deletions)
View changed files
📝
.golangci.yml(+3 -0)📝
README.md(+1 -0)➕
docs/route53.md(+58 -0)📝
internal/provider/constants/providers.go(+2 -0)📝
internal/provider/errors/validation.go(+2 -0)📝
internal/provider/provider.go(+3 -0)➕
internal/provider/providers/route53/api.go(+85 -0)➕
internal/provider/providers/route53/api_test.go(+157 -0)➕
internal/provider/providers/route53/provider.go(+192 -0)➕
internal/provider/providers/route53/signer.go(+90 -0)➕
internal/provider/providers/route53/signer_test.go(+78 -0)📄 Description
Changes
This includes the support to Simple Route policy from Route53.
Details:
Testing
Build container and ran with the default configs and using policy in the documentation
Here is one event for a domain that didn't exit at route53
Note: this is a partial implementation of #375 because AWS route53 supports many more DNS features.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.