Hagen Hübel

Results 43 comments of Hagen Hübel

Adding the following policy to the user put me one step ahead. ``` { "Version": "2012-10-17", "Statement": [ { "Sid": "Stmt1482712489000", "Effect": "Allow", "Action": [ "iam:CreateRole" ], "Resource": [ "*"...

Modifiying the policy from latest comment and adding the action: "iam:PutRolePolicy" fixed this issue. Now it fails with "role already exits" so i had to remove the already created role...

This is my policy but it still fails on missing permissions for "iam:PassRole": ``` { "Version": "2012-10-17", "Statement": [ { "Sid": "Stmt1482712489000", "Effect": "Allow", "Action": [ "iam:CreateRole", "iam:PutRolePolicy", "lambda:CreateFunction", "lambda:InvokeAsync",...

At the end some more Policy-Entries was required: ``` { "Version": "2012-10-17", "Statement": [ { "Sid": "Stmt1482712489000", "Effect": "Allow", "Action": [ "iam:CreateRole", "iam:PutRolePolicy", "lambda:CreateFunction", "lambda:InvokeAsync", "lambda:InvokeFunction", "iam:PassRole", "lambda:UpdateAlias", "lambda:CreateAlias", "lambda:GetFunctionConfiguration",...

Finally give up now with this one, which can't be solved even with adding the specific actions to the users policy: > user is not authorized to perform: lambda:AddPermission on...

This is the final policy that is required to deploy the lambda: ``` { "Version": "2012-10-17", "Statement": [ { "Sid": "Stmt1482712489000", "Effect": "Allow", "Action": [ "iam:CreateRole", "iam:PutRolePolicy", "lambda:CreateFunction", "lambda:InvokeAsync", "lambda:InvokeFunction",...

Please provide more info. What do you do? Whats your code? What happens exactly and what do you expect instead?

There is no specific download-directory of the device. You specify the final location by yourself and it will exactly download each byte onto this location and not some where else....

Please provide your code and configuration and tell us on which OS you was testing. In general: download-process will not download byte by byte and trigger the progress-callback, it will...

Thank your for reaching out @simitii! I am fine with it. Looking forward for your PR.