AWS malformed policy error

前端 未结 3 923
时光说笑
时光说笑 2020-12-29 01:15

I am trying to set an AWS group policy via the AWS CLI like so:

aws iam put-group-policy --group-name my-group --policy-name \\
    s3-full-access --policy-d         


        
相关标签:
3条回答
  • 2020-12-29 01:39

    I was facing the same issue on window 10 and this help me.

    **file** : followed by **two Forward slash** like         :"file://"
    **Path on window 10** : followed by **Backward slash** like 
    :"c:\Users\Anand\Desktop\anand-jan19.json"
    
    C:\Users\Anand>aws iam create-policy --policy-name anand-jan19 --policy-document file://c:\Users\Anand\Desktop\anand-jan19.json
    {
        "Policy": {
            "PolicyName": "anand-jan19",
            "PolicyId": "EQWEQBV33ewrwYCRCS",
            "Arn": "arn:aws:iam::56433378:policy/anand-jan19",
            "Path": "/",
            "DefaultVersionId": "v1",
            "AttachmentCount": 0,
            "PermissionsBoundaryUsageCount": 0,
            "IsAttachable": true,
            "CreateDate": "2019-02-10T04:03:32Z",
            "UpdateDate": "2019-02-10T04:03:32Z"
        }
    }
    
    0 讨论(0)
  • 2020-12-29 01:43

    Solved this riddle!

    There has to be a file:// prefix in front of the policy file name:

    aws iam put-group-policy --group-name my-group --policy-name s3-full-access --policy-document file:///tmp/policy.json
    

    The original error message is very misleading, as you get the same message if you provide a filename that does not exist at all.

    So it is not the syntax of the policy in the file but the fact that the CLI does not see the file at all, that causes the error.

    0 讨论(0)
  • 2020-12-29 01:48

    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ PS command: Example 1.

    aws iam create-role --role-name vmimport --assume-role-policy-document file:///policy/trust-policy.json

    ****Actual path******: C:\policy\trust-policy.json ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

    PS command: Example 2.

    aws iam put-role-policy --role-name vmimport --policy-name vmimport --policy-document file:///policy/role-policy.json

    ****Actual path******: C:\policy\role-policy.json +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

    0 讨论(0)
提交回复
热议问题