Skip to content

Commit

Permalink
fix code
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jan 27, 2022
1 parent 3f8628b commit 5bdcad6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions code/ddns-lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@
LOGGER = logging.getLogger()
ACCOUNT = None
REGION = None
VERSION = '0.0.4'
VERSION = '0.0.5'

# Adjust the logging level [logging.INFO, logging.DEBUG, logging.WARNING, etc]
LOGGER.setLevel(logging.DEBUG)
# SNS_CLIENT = None

# Read Env variables
SLEEPTIME = int(os.environ.get('SleepTime'],'60'))
SLEEPTIME = int(os.environ.get('SleepTime','60'))
DDBNAME = os.environ.get('DynamoDBName','inf-dynamic-route53')
TAGKEY_CNAME = os.environ.get('TagKeyCname','boc:dns:cname')
TAGKEY_ZONE = os.environ.get('TagKeyZone','boc:dns:zone')
Expand Down
Binary file modified code/ddns-lambda.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "0.0.15"
_module_version = "0.0.16"
}

0 comments on commit 5bdcad6

Please sign in to comment.