Skip to content

Commit

Permalink
Change a value list to a comma-separated string in boto_route53.present
Browse files Browse the repository at this point in the history
Fixes #15514
  • Loading branch information
rallytime committed Sep 22, 2015
1 parent 775a4f9 commit 9383d91
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions salt/states/boto_route53.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ def present(
'''
ret = {'name': name, 'result': True, 'comment': '', 'changes': {}}

# If a list is passed in for value, change it to a comma-separated string
# So it will work with subsequent boto module calls and string functions
if isinstance(value, list):
value = ','.join(value)

record = __salt__['boto_route53.get_record'](name, zone, record_type,
False, region, key, keyid,
profile)
Expand Down

0 comments on commit 9383d91

Please sign in to comment.