add ddns service

This commit is contained in:
2024-06-06 20:37:23 -04:00
parent 861617d387
commit 30107f91a8
7 changed files with 125 additions and 0 deletions

31
ddns/record_template.json Normal file
View File

@@ -0,0 +1,31 @@
{
"Comment": "Update Public IPV4 Address",
"Changes": [
{
"Action": "UPSERT",
"ResourceRecordSet": {
"Name": "*.{{ fqdn }}.",
"Type": "A",
"TTL": 300,
"ResourceRecords": [
{
"Value": ""
}
]
}
},
{
"Action": "UPSERT",
"ResourceRecordSet": {
"Name": "{{ fqdn }}.",
"Type": "A",
"TTL": 300,
"ResourceRecords": [
{
"Value": ""
}
]
}
}
]
}