X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=instancehandler%2Fviews.py;h=45120e2842893a0f132816fd1d32fa0cd3025835;hb=refs%2Fchanges%2F01%2F6601%2F1;hp=d80d18dda189e926e1bcc9e6e99a71e87f16cef7;hpb=66364b7c73907ef699553b182ea02890fa2aeb70;p=osm%2FLW-UI.git diff --git a/instancehandler/views.py b/instancehandler/views.py index d80d18d..45120e2 100644 --- a/instancehandler/views.py +++ b/instancehandler/views.py @@ -64,7 +64,7 @@ def create(request): "vimAccountId": request.POST.get('vimAccountId', ''), } if 'ssh_key' in request.POST and request.POST.get('ssh_key') != '': - ns_data["ssh-authorized-key"] = [request.POST.get('ssh_key')] + ns_data["ssh_keys"] = request.POST.get('ssh_key') if 'config' in request.POST: ns_config = yaml.load(request.POST.get('config'))