4ee9f40e62
* convert aws_acm_facts to AnsibleAWSModule * factor aws_acm_facts into module_utils * add more filtering options for aws_acm_info * add aws_acm module and tests * uncomment aws_acm test * fix linting for aws_acm * fix __future__ linting for aws_acm * fix linting for aws_acm * fix linting for aws_acm * fix linting for aws_acm * fix linting for aws_acm * fix aws_acm_info arg type * remove test for old module name aws_acm_facts * simplify AWS ACM client creation * fix indent typo in aws_acm test * catch BotoCoreError in aws_acm * fix indent typo in aws_acm test * tighten AWS ACM test policy resource * move aws acm int test to venv * remove errant file * fix AWS ACM int test perms * undo copyright addition to wrong file * fix invalid log message in aws_acm Co-Authored-By: Jill R <4121322+jillr@users.noreply.github.com> * rephrase aws_acm_info doc from facts to information Co-Authored-By: Jill R <4121322+jillr@users.noreply.github.com> * rename aws_facts var to aws_info * remove case insensitivity for aws_acm pem compare * add no_log for aws_acm credential setting * add per-test prefix to aws_acm test resource names * make aws_acm use crypto module_util * clarify copyright for aws_acm * make aws_acm int test clearer * add explicit crypto dependency to aws_acm * change requests for aws_acm pr * fix wrong copyright owner aws_acm test * fix wrong copyright owner aws_acm test * rewrite aws_acm cert chain compare with regex, no dependency * fix linting for aws_acm unit test * fix linting for aws_acm unit test * fix linting and duplicate ignore * fix failed cert chain split in aws_acm, add more tests * remove errant file * more linting fixes for aws_acm * fix sanity ignore * rewrite cert compare in aws_acm to use base64 decode * improve regex for pem cert chain split in aws_acm * undo changes to crypto module util for aws_acm * increment ansible version for new aws_acm module * convert aws_acm return(x) to return x * increment version added for aws_acm_info new features * fix linting * fix bugs with AWS ACM * fix bad rebase * disable AWS ACM integration test, due to AWS account limit issue * remove aws acm integration test from shippable group
40 lines
No EOL
1.4 KiB
YAML
40 lines
No EOL
1.4 KiB
YAML
---
|
|
# we'll generate 3 certificates locally for the test
|
|
# Upload the first
|
|
# overwrite it with the second
|
|
# and the third is unrelated, to check we only get info about the first when we want
|
|
local_certs:
|
|
- priv_key: "{{ remote_tmp_dir }}/private-1.pem"
|
|
cert: "{{ remote_tmp_dir }}/public-1.pem"
|
|
csr: "{{ remote_tmp_dir }}/csr-1.csr"
|
|
domain: acm1.ansible.com
|
|
name: "{{ resource_prefix }}_1"
|
|
|
|
- priv_key: "{{ remote_tmp_dir }}/private-2.pem"
|
|
cert: "{{ remote_tmp_dir }}/public-2.pem"
|
|
csr: "{{ remote_tmp_dir }}/csr-2.csr"
|
|
domain: acm2.ansible.com
|
|
name: "{{ resource_prefix }}_2"
|
|
|
|
- priv_key: "{{ remote_tmp_dir }}/private-3.pem"
|
|
cert: "{{ remote_tmp_dir }}/public-3.pem"
|
|
csr: "{{ remote_tmp_dir }}/csr-3.csr"
|
|
domain: acm3.ansible.com
|
|
name: "{{ resource_prefix }}_3"
|
|
|
|
# we'll have one private key
|
|
# make 2 chains using it
|
|
# so we can test what happens when you change just the chain
|
|
# not the domain or key
|
|
chained_cert:
|
|
priv_key: "{{ remote_tmp_dir }}/private-ch-0.pem"
|
|
domain: acm-ch.ansible.com
|
|
name: "{{ resource_prefix }}_4"
|
|
chains:
|
|
- cert: "{{ remote_tmp_dir }}/public-ch-0.pem"
|
|
csr: "{{ remote_tmp_dir }}/csr-ch-0.csr"
|
|
ca: 0 # index into local_certs
|
|
- cert: "{{ remote_tmp_dir }}/public-ch-1.pem"
|
|
csr: "{{ remote_tmp_dir }}/csr-ch-1.csr"
|
|
ca: 1 # index into local_certs
|
|
|