Skip to content

Commit

Permalink
Route53 querying and updating logic
Browse files Browse the repository at this point in the history
Implementation of the Route53 querying and updating logic. The application
supports both IPv4 and IPv6, as well distinct RecordSets for each. The
configuration is loading from a YAML file.
  • Loading branch information
alessandroasm committed Jun 25, 2020
1 parent a339d45 commit e8cb24f
Show file tree
Hide file tree
Showing 8 changed files with 930 additions and 14 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/target
/*.csv
/*.yml
.swp
45 changes: 45 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'rust-aws-ddns'",
"cargo": {
"args": [
"build",
"--bin=rust-aws-ddns",
"--package=rust-aws-ddns"
],
"filter": {
"name": "rust-aws-ddns",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'rust-aws-ddns'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=rust-aws-ddns",
"--package=rust-aws-ddns"
],
"filter": {
"name": "rust-aws-ddns",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
Loading

0 comments on commit e8cb24f

Please sign in to comment.