launch_config_create.yml 1019 B

12345678910111213141516171819202122
  1. ---
  2. - name: fetch the security groups for launch config
  3. ec2_group_facts:
  4. filters:
  5. group-name: "{{ l_launch_config_security_groups[launch_config_item.key] }}"
  6. vpc-id: "{{ vpcout.vpcs[0].id }}"
  7. region: "{{ openshift_aws_region }}"
  8. register: ec2sgs
  9. # Create the scale group config
  10. - name: Create the node scale group launch config
  11. ec2_lc:
  12. name: "{{ openshift_aws_launch_config_basename }}-{{ launch_config_item.key }}-{{ l_epoch_time }}"
  13. region: "{{ openshift_aws_region }}"
  14. image_id: "{{ l_aws_ami_map[launch_config_item.key] | default(openshift_aws_ami) }}"
  15. instance_type: "{{ launch_config_item.value.instance_type }}"
  16. security_groups: "{{ openshift_aws_launch_config_security_group_id | default(ec2sgs.security_groups | map(attribute='group_id')| list) }}"
  17. user_data: "{{ lookup('template', 'user_data.j2') }}"
  18. key_name: "{{ openshift_aws_ssh_key_name }}"
  19. ebs_optimized: False
  20. volumes: "{{ launch_config_item.value.volumes }}"
  21. assign_public_ip: True