diff --git a/CHANGELOG.md b/CHANGELOG.md index cb8c9f6..62adb86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,3 +42,8 @@ - code 0.1.11 - lots of bug fixes - incorporate actual adding of heritage text records + +* 0.1.1 -- 2022-02-25 + - code 0.1.18 + - lots of bug fixes + - update to use launch_time as the timestamp in the TXT ecords to be able to reconstruct it to delete it diff --git a/cloudwatch.tf b/cloudwatch.tf index f1f835c..c1c9613 100644 --- a/cloudwatch.tf +++ b/cloudwatch.tf @@ -4,7 +4,7 @@ locals { "source" = ["aws.ec2"] "detail-type" = ["EC2 Instance State-change Notification"] "detail" = { - "state" = ["running", "shutting-down", "stopped", "terminated"] + "state" = ["running", "shutting-down", "stopped"] } } } diff --git a/code/ddns-lambda.zip b/code/ddns-lambda.zip index 7f01144..4b308c1 100644 Binary files a/code/ddns-lambda.zip and b/code/ddns-lambda.zip differ diff --git a/version.tf b/version.tf index b12b2f6..a390a19 100644 --- a/version.tf +++ b/version.tf @@ -1,3 +1,3 @@ locals { - _module_version = "0.1.0" + _module_version = "0.1.1" }