mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
fixing minor error in security_groups
security groups parser had incorrect split action which caused errors
This commit is contained in:
parent
c9d6f8e5ed
commit
4a70b8c0cc
1 changed files with 1 additions and 1 deletions
|
@ -620,7 +620,7 @@ def request_instance(vm_=None, call=None):
|
|||
'security_groups', vm_, __opts__, search_global=False
|
||||
)
|
||||
if security_groups is not None:
|
||||
vm_groups = security_groups.split(',')
|
||||
vm_groups = security_groups
|
||||
avail_groups = conn.secgroup_list()
|
||||
group_list = []
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue