diff options
author | Steph Enders <steph@senders.io> | 2023-12-28 07:47:19 -0500 |
---|---|---|
committer | Steph Enders <steph@senders.io> | 2023-12-28 07:47:19 -0500 |
commit | 34e0a59ed43da009d2780d19eaff86189d210c95 (patch) | |
tree | 77f1375d23cae952cc65af15e146805d4ed87a9c | |
parent | 9c8485d97cb9ba2b595ef339dfd90632863ebe9d (diff) |
Fix the missing { } in record value too
Made the same mistake twice -_-
-rwxr-xr-x | update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ if [ "$config_ip" != "$actual_ip" ]; then "Type": "A", "TTL": 300, "ResourceRecords": [ - "Value": "$actual_ip" + { "Value": "$actual_ip" } ] } } |