Skip to content
This repository was archived by the owner on Dec 29, 2021. It is now read-only.

Commit 1550fc4

Browse files
committed
Use proper variable names (no var. prefix)
1 parent e110da4 commit 1550fc4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

template/tagging_lambda.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
# Tag the resources ...
2222
def lambda_handler(event, context):
23-
searchTagKey = '${var.search_tag_key}'
24-
searchTagValue = '${var.search_tag_value}'
23+
searchTagKey = '${search_tag_key}'
24+
searchTagValue = '${search_tag_value}'
2525
filter = [{'Name':'tag:' + searchTagKey, 'Values':[searchTagValue]}]
2626

2727
ec2 = boto3.resource('ec2', region_name=region)

0 commit comments

Comments
 (0)