0

我正在使用 Ansible 来配置 EC2 服务器。这是我到目前为止所得到的:

- name: Launch instances
      local_action:
        module: ec2
        key_name: my-key
        aws_access_key: ***
        aws_secret_key: ***
        region: us-west-1
        group: management
        instance_type: m1.small
        image: ami-8635a9b6
        count: 2
        wait: yes
      register: ec2

但我没有进行身份验证:

You are not authorized to perform this operation.

我想这是因为我不完全理解凭证是如何工作的。我可以在 EC2 控制台中看到 my-key 是我正在运行的实例(ansible 服务器)的密钥名称,并且我知道 access_key 和 secret_key 是正确的。

我认为这更多的是我不了解 key_name/keypair 以及它如何工作/如何安装它,而不是任何与 ansible 直接相关的东西。


或者这可能与用户有更多关系。我以 root 身份运行脚本。


这是日志:

TASK: [Launch instances] ******************************************************
<127.0.0.1> REMOTE_MODULE ec2 image=ami-8635a9b6 ec2_secret_key=*** ec2_access_key=*** instance_type=m1.small region=us-west-1 key_name=ca-management group=management
<127.0.0.1> EXEC ['/bin/sh', '-c', 'mkdir -p $HOME/.ansible/tmp/ansible-tmp-1417702041.0-138277713680589 && echo $HOME/.ansible/tmp/ansible-tmp-1417702041.0-138277713680589']
<127.0.0.1> PUT /tmp/tmpFgUh1O TO /root/.ansible/tmp/ansible-tmp-1417702041.0-138277713680589/ec2
<127.0.0.1> EXEC ['/bin/sh', '-c', u'LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 /usr/bin/python /root/.ansible/tmp/ansible-tmp-1417702041.0-138277713680589/ec2; rm -rf /root/.ansible/tmp/ansible-tmp-1417702041.0-138277713680589/ >/dev/null 2>&1']
failed: [127.0.0.1 -> 127.0.0.1] => {"failed": true, "parsed": false}
Traceback (most recent call last):
  File "/root/.ansible/tmp/ansible-tmp-1417702041.0-138277713680589/ec2", line 2959, in <module>
    main()
  File "/root/.ansible/tmp/ansible-tmp-1417702041.0-138277713680589/ec2", line 1191, in main
    (instance_dict_array, new_instance_ids, changed) = create_instances(module, ec2)
  File "/root/.ansible/tmp/ansible-tmp-1417702041.0-138277713680589/ec2", line 761, in create_instances
    grp_details = ec2.get_all_security_groups()
  File "/usr/lib/python2.6/site-packages/boto/ec2/connection.py", line 2969, in get_all_security_groups
    [('item', SecurityGroup)], verb='POST')
  File "/usr/lib/python2.6/site-packages/boto/connection.py", line 1182, in get_list
    raise self.ResponseError(response.status, response.reason, body)
boto.exception.EC2ResponseError: EC2ResponseError: 403 Forbidden
<?xml version="1.0" encoding="UTF-8"?>
<Response><Errors><Error><Code>UnauthorizedOperation</Code><Message>You are not authorized to perform this operation.</Message></Error></Errors><RequestID>f3b9044b-9f41-44dd-9d5e-b7b13215c14a</RequestID></Response>


FATAL: all hosts have already failed -- aborting

令人尴尬的是,事实证明 IT 给了我错误的用户。切换到具有权限的正确用户,瞧,它起作用了。保留以下有用答案的问题。

4

2 回答 2

1

该错误You are not authorized to perform this operation.是您在 中分配的访问/特权AWS IAM的结果。我不确定 ansible 部分,但是,请检查您的 AWS 账户中的用户名允许/拒绝哪些权限/策略。

此外,您可以尝试从 AWS 控制台启动实例,您也会在那里收到类似的错误。

于 2014-12-04T09:48:13.247 回答
1
  local_action:
    module: ec2
    ec2_access_key: ***
    ec2_secret_key: ***

与文档所说的有所不同。以下是正确的键名。

  local_action:
    module: ec2
    aws_access_key: ***
    aws_secret_key: ***
于 2014-12-04T15:16:40.743 回答