查找已注册实例的所有AWS ALB目标组的列表

时间:2018-04-26 13:03:39

标签: ansible ansible-2.x

对于ELB,如果我们要从所有elbs中删除实例,我们只需要将实例id传递给elb_instance模块,如果我们想要将实例添加回相同的剧本,它给我们一个神奇的变量ec2_elbs,我们可以迭代这个变量,并将实例添加回或注册到他之前注册的所有榆树。

我没有找到任何模块,我可以用它来查找实例注册的目标组列表。如果知道它,有人会指出。

2 个答案:

答案 0 :(得分:0)

这是elb_target_group模块,它处于预览模式,或者你可以使用python脚本和boto来查找特定目标组中的实例列表

答案 1 :(得分:0)

我找到了一种从所有已注册的目标组中动态删除该实例的方法:

- name: Collect facts about EC2 Instance
  action: ec2_metadata_facts

- name: Get the list of all target groups to which Instance(s) registered
  local_action:
    module: elb_target_facts
    instance_id: "{{ ansible_ec2_instance_id }}"
    region: "{{ ansible_ec2_placement_region }}"
  register: alb_target_facts
  become: no

- name: Deregister the Instance from all target groups
  local_action:
    module: elb_target
    target_group_arn: "{{ item.target_group_arn }}"
    target_id: "{{ ansible_ec2_instance_id }}"
    target_status_timeout: 300
    target_status: unused
    state: absent
  loop: "{{ alb_target_facts.instance_target_groups }}"
  become: no

因为我已将目标组信息注册到一个变量中,所以我可以再次使用它来将其添加回去:

- name: Register the Instance back to the target group(s)
  local_action:
    module: elb_target
    target_group_arn: "{{ item.target_group_arn }}"
    target_id: "{{ ansible_ec2_instance_id }}"
    target_status: healthy
    target_status_timeout: 300
    state: present
  loop: "{{ alb_target_facts.instance_target_groups }}"
  become: no