iam_cert.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: upload certificates to AWS IAM
  3. iam_cert23:
  4. state: present
  5. name: "{{ openshift_aws_iam_cert_name }}"
  6. cert: "{{ openshift_aws_iam_cert_path }}"
  7. key: "{{ openshift_aws_iam_cert_key_path }}"
  8. cert_chain: "{{ openshift_aws_iam_cert_chain_path | default(omit) }}"
  9. register: elb_cert_chain
  10. failed_when:
  11. - "'failed' in elb_cert_chain"
  12. - elb_cert_chain.failed
  13. - "'msg' in elb_cert_chain"
  14. - "'already exists and has a different certificate body' in elb_cert_chain.msg or 'BotoServerError' in elb_cert_chain.msg or 'Traceback' in elb_cert_chain.msg.module_stderr"
  15. when:
  16. - openshift_aws_create_iam_cert | bool
  17. - openshift_aws_iam_cert_path != ''
  18. - openshift_aws_iam_cert_key_path != ''
  19. - openshift_aws_elb_cert_arn == ''
  20. - debug: msg="{{ elb_cert_chain }}"
  21. - name: set_fact openshift_aws_elb_cert_arn
  22. set_fact:
  23. openshift_aws_elb_cert_arn: "{{ elb_cert_chain.arn }}"
  24. when:
  25. - openshift_aws_create_iam_cert | bool
  26. - openshift_aws_iam_cert_path != ''
  27. - openshift_aws_iam_cert_key_path != ''
  28. - openshift_aws_elb_cert_arn == ''
  29. - name: wait for cert to propagate
  30. pause:
  31. seconds: 5
  32. when: elb_cert_chain.changed