ami_copy.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. - fail:
  3. msg: "{{ item }} needs to be defined"
  4. when: item is not defined
  5. with_items:
  6. - openshift_aws_ami_copy_src_ami
  7. - openshift_aws_ami_copy_name
  8. - name: Create IAM KMS key with alias
  9. oo_iam_kms:
  10. state: present
  11. alias: "{{ openshift_aws_iam_kms_alias }}"
  12. region: "{{ openshift_aws_region }}"
  13. register: created_kms
  14. - debug: var=created_kms.results
  15. - name: "Create copied AMI image and wait: {{ openshift_aws_ami_copy_wait }}"
  16. ec2_ami_copy:
  17. name: "{{ openshift_aws_ami_copy_name }}"
  18. region: "{{ openshift_aws_region }}"
  19. source_region: "{{ openshift_aws_ami_copy_src_region }}"
  20. source_image_id: "{{ openshift_aws_ami_copy_src_ami }}"
  21. encrypted: "{{ openshift_aws_ami_encrypt | bool }}"
  22. kms_key_id: "{{ created_kms.results.KeyArn | default(omit) }}"
  23. wait: "{{ openshift_aws_ami_copy_wait | default(omit) }}"
  24. tags: "{{ openshift_aws_ami_tags }}"
  25. register: copy_result
  26. - debug: var=copy_result
  27. - name: return AMI ID with setfact
  28. set_fact:
  29. openshift_aws_ami_copy_custom_ami: "{{ copy_result.image_id }}"