EC2ResponseError:401未经授权使用Saltstack boto_vpc模块

时间:2015-06-04 15:37:28

标签: amazon-web-services amazon-ec2 boto salt-stack amazon-vpc

我尝试使用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并且运行正常!

1 个答案:

答案 0 :(得分:1)

从阅读salt reference开始, keyid 表示访问密钥,密钥表示密钥。你不小心改变了它们吗?