iam_cert.yml 840 B

12345678910111213141516171819202122232425262728
  1. ---
  2. - name: upload certificates to AWS IAM
  3. iam_cert:
  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. dup_ok: True
  10. register: elb_cert_chain
  11. when:
  12. - openshift_aws_create_iam_cert | bool
  13. - openshift_aws_iam_cert_path != ''
  14. - openshift_aws_iam_cert_key_path != ''
  15. - openshift_aws_elb_cert_arn == ''
  16. - debug:
  17. msg: "{{ elb_cert_chain }}"
  18. verbosity: 1
  19. - name: set_fact openshift_aws_elb_cert_arn
  20. set_fact:
  21. openshift_aws_elb_cert_arn: "{{ elb_cert_chain.arn }}"
  22. when:
  23. - openshift_aws_create_iam_cert | bool
  24. - openshift_aws_iam_cert_path != ''
  25. - openshift_aws_iam_cert_key_path != ''
  26. - openshift_aws_elb_cert_arn == ''