diff --git a/CHANGELOG.md b/CHANGELOG.md index bbd40a9..992ab33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,3 +17,12 @@ * 0.0.19 -- 2022-02-11 - update code: 0.0.10 - add default for tag key hostname of boc:dns:name + +* 0.0.20 -- 2022-02-17 + - update code: 0.0.11 + - Name field logic to handle multiple cases (Name has fqdn, Name only hostname + zone name, Name only hostname + vpc dhcp dns zone name). See the top of the script for more info. + - Changed the sleep time to perform some instance lookup and while look until max sleep if instance doesn't return values. + - Added is_valid_zone function to re-use. + - Added additional "sleep" timer to reduce Route 53 API limit (5 per sec). I also reduced the amount of API's which were duplicate. Also, added random 10 or 20 seconds sleep timer to reduce the probability of API limit. + - Route 53 SDK will auto-retry up to 5 times, however, by adding random up to 10 seconds (running) or up to 20 seconds (terminate/stop) will spread out the calls if multiple instances are launched OR terminated/stopped. Testing performed up to 30 instance started/stopped. + diff --git a/version.tf b/version.tf index bdf1368..56bf4db 100644 --- a/version.tf +++ b/version.tf @@ -1,3 +1,3 @@ locals { - _module_version = "0.0.19" + _module_version = "0.0.20" }