major vscode config overhauls. Getting python working as expected
All checks were successful
Reese's Arch Toolbox / build-and-push-arch-toolbox (push) Successful in 21m26s
Podman DDNS Image / build-and-push-ddns (push) Successful in 34s

This commit is contained in:
2025-05-26 12:04:53 -04:00
parent 7b93f740ec
commit de8b827cfb
7 changed files with 5511 additions and 87 deletions

View File

@@ -6,5 +6,6 @@ readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"boto3>=1.37.30",
"boto3-stubs[all]>=1.38.23",
"pytest>=8.3.5",
]

View File

@@ -3,15 +3,20 @@ export HOSTED_ZONE_ID=<aws hosted zone ID>
export ROUTE53_RECORD=something.mydomain.com
"""
import boto3
import os
import logging
import os
import subprocess
from typing import TYPE_CHECKING
import boto3
if TYPE_CHECKING:
from mypy_boto3_route53 import Route53Client
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s.%(msecs)03d %(levelname)s %(module)s - %(funcName)s: %(message)s',
datefmt='%Y-%m-%d %H:%M:%S',
format="%(asctime)s.%(msecs)03d %(levelname)s %(module)s - %(funcName)s: %(message)s",
datefmt="%Y-%m-%d %H:%M:%S",
)
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
@@ -26,12 +31,14 @@ def get_ipv4() -> str:
result = subprocess.run(["curl", "-4", "ifconfig.me"], capture_output=True)
return result.stdout.decode()
def get_ipv6() -> str:
result = subprocess.run(["curl", "-6", "ifconfig.me"], capture_output=True)
return result.stdout.decode()
def update_ipv4(hosted_zone_id: str, record: str, public_ipv4: str):
client = boto3.client("route53")
client: Route53Client = boto3.client("route53")
try:
logger.info("Calling upsert for ipv4.")
client.change_resource_record_sets(
@@ -45,21 +52,18 @@ def update_ipv4(hosted_zone_id: str, record: str, public_ipv4: str):
"Name": f"{record}",
"Type": "A",
"TTL": 300,
"ResourceRecords": [
{
"Value": public_ipv4
}
]
}
"ResourceRecords": [{"Value": public_ipv4}],
},
}
]
}
],
},
)
logger.info(f"Successfully updated ipv4 for {record}")
except Exception as e:
logger.error(f"Error updating ipv4 for {record}.")
raise e
def update_ipv6(hosted_zone_id: str, record: str, public_ipv6: str):
client = boto3.client("route53")
try:
@@ -75,21 +79,18 @@ def update_ipv6(hosted_zone_id: str, record: str, public_ipv6: str):
"Name": f"{record}",
"Type": "AAAA",
"TTL": 300,
"ResourceRecords": [
{
"Value": public_ipv6
}
]
}
"ResourceRecords": [{"Value": public_ipv6}],
},
}
]
}
],
},
)
logger.info(f"Successfully updated ipv6 for {record}")
except Exception as e:
logger.error(f"Error updating ipv6 for {record}.")
raise e
def main():
if not HOSTED_ZONE_ID:
logger.error("HOSTED_ZONE_ID env var not found!")
@@ -110,7 +111,11 @@ def main():
logger.error("Public IPv4 not found.")
exit(1)
logger.info(f"Public IPv4 is {public_ipv4}")
update_ipv4(hosted_zone_id=HOSTED_ZONE_ID, record=ROUTE53_RECORD, public_ipv4=public_ipv4)
update_ipv4(
hosted_zone_id=HOSTED_ZONE_ID,
record=ROUTE53_RECORD,
public_ipv4=public_ipv4,
)
if SKIP_IPV6:
logger.warning("Skipping IPv6")
@@ -121,7 +126,12 @@ def main():
logger.error("Public IPv6 not found.")
exit(1)
logger.info(f"Public IPv6 is {public_ipv6}")
update_ipv6(hosted_zone_id=HOSTED_ZONE_ID, record=ROUTE53_RECORD, public_ipv6=public_ipv6)
update_ipv6(
hosted_zone_id=HOSTED_ZONE_ID,
record=ROUTE53_RECORD,
public_ipv6=public_ipv6,
)
if __name__ == "__main__":
main()
main()

File diff suppressed because it is too large Load Diff