seal_ami.yml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ---
  2. - name: fetch newly created instances
  3. ec2_remote_facts:
  4. region: "{{ openshift_aws_region }}"
  5. filters:
  6. "tag:Name": "{{ openshift_aws_base_ami_name }}"
  7. instance-state-name: running
  8. register: instancesout
  9. retries: 20
  10. delay: 3
  11. until: instancesout.instances|length > 0
  12. - name: bundle ami
  13. ec2_ami:
  14. instance_id: "{{ instancesout.instances.0.id }}"
  15. region: "{{ openshift_aws_region }}"
  16. state: present
  17. description: "This was provisioned {{ ansible_date_time.iso8601 }}"
  18. name: "{{ openshift_aws_ami_name }}"
  19. tags: "{{ openshift_aws_ami_tags }}"
  20. wait: yes
  21. register: amioutput
  22. - debug: var=amioutput
  23. - when: openshift_aws_ami_encrypt | bool
  24. block:
  25. - name: augment the encrypted ami tags with source-ami
  26. set_fact:
  27. source_tag:
  28. source-ami: "{{ amioutput.image_id }}"
  29. - name: copy the ami for encrypted disks
  30. include_tasks: ami_copy.yml
  31. vars:
  32. openshift_aws_ami_copy_name: "{{ openshift_aws_ami_name }}-encrypted"
  33. openshift_aws_ami_copy_src_ami: "{{ amioutput.image_id }}"
  34. # TODO: How does the kms alias get passed to ec2_ami_copy
  35. openshift_aws_ami_copy_kms_alias: "alias/{{ openshift_aws_clusterid }}_kms"
  36. openshift_aws_ami_copy_tags: "{{ source_tag | combine(openshift_aws_ami_tags) }}"
  37. # this option currently fails due to boto waiters
  38. # when supported this need to be reapplied
  39. #openshift_aws_ami_copy_wait: True
  40. - name: terminate temporary instance
  41. ec2:
  42. state: absent
  43. region: "{{ openshift_aws_region }}"
  44. instance_ids: "{{ instancesout.instances.0.id }}"