EC2ResponseError: 401 Unauthorized using Saltstack boto_vpc module

EC2ResponseError: 401 Unauthorized using Saltstack boto_vpc module

我正在尝试使用 Saltstack 和 boto_vpc 模块创建 vpc。这是我的状态:

vpc_create:
      module.run:
        - name: boto_vpc.create
        - cidr_block: '10.0.0.0/24'
        - vpc_name: 'myVpc'
        - region: 'us-east-1'
        - key: 'ADJJDNEJFJGNFKFKFKIW'
        - keyid: 'SJDJNFNEJUWLLLCLCLENNRBFLGSLSLKEMFUHE'

我使用的密钥是正确的但是我得到了这个错误:

[INFO    ] Running state [boto_vpc.create] at time 14:25:35.839797
[INFO    ] Executing state module.run for boto_vpc.create
[ERROR   ] EC2ResponseError: 401 Unauthorized
<?xml version="1.0" encoding="UTF-8"?>
<Response><Errors><Error><Code>AuthFailure</Code><Message>AWS was not able to validate the provided access credentials</Message></Error></Errors><RequestID>7cb74939-afda-4722-a31e-2855c5cbe16b</RequestID></Response>
[ERROR   ] {'ret': False}
[INFO    ] Completed state [boto_vpc.create] at time 14:25:35.882840
[DEBUG   ] File /var/cache/salt/minion/accumulator/49944656 does not exist, no need to cleanup.
[DEBUG   ] LazyLoaded highstate.output
[DEBUG   ] LazyLoaded nested.output
local:
----------
          ID: vpc_create
    Function: module.run
        Name: boto_vpc.create
      Result: False
     Comment: Module function boto_vpc.create executed
     Started: 14:25:35.839797
    Duration: 43.043 ms
     Changes:
              ----------
              ret:
                  False

Saltstack 版本:

Salt: 2015.5.0
         Python: 2.6.9 (unknown, Apr  1 2015, 18:16:00)
         Jinja2: 2.7.2
       M2Crypto: 0.21.1
 msgpack-python: 0.4.6
   msgpack-pure: Not Installed
       pycrypto: 2.6.1
        libnacl: Not Installed
         PyYAML: 3.10
          ioflo: Not Installed
          PyZMQ: 14.3.1
           RAET: Not Installed
            ZMQ: 3.2.5
           Mako: Not Installed

我试过 aws ec2 create-vpc --cidr-block 10.0.0.0/16 并且工作正常!

从阅读 salt reference 来看,keyid 代表访问密钥,key 代表秘密密钥。你是不是不小心调换了它们?