mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-05-07 22:03:01 +00:00
More bools. (#580)
This commit is contained in:
@@ -160,7 +160,7 @@ EXAMPLES = '''
|
|||||||
- name: Force regenerate an OpenSSH keypair if it already exists
|
- name: Force regenerate an OpenSSH keypair if it already exists
|
||||||
community.crypto.openssh_keypair:
|
community.crypto.openssh_keypair:
|
||||||
path: /tmp/id_ssh_rsa
|
path: /tmp/id_ssh_rsa
|
||||||
force: True
|
force: true
|
||||||
|
|
||||||
- name: Generate an OpenSSH keypair with a different algorithm (dsa)
|
- name: Generate an OpenSSH keypair with a different algorithm (dsa)
|
||||||
community.crypto.openssh_keypair:
|
community.crypto.openssh_keypair:
|
||||||
|
|||||||
@@ -87,7 +87,7 @@
|
|||||||
- block:
|
- block:
|
||||||
- name: Have ECS generate a signed certificate
|
- name: Have ECS generate a signed certificate
|
||||||
ecs_certificate:
|
ecs_certificate:
|
||||||
backup: True
|
backup: true
|
||||||
path: '{{ example1_cert_path }}'
|
path: '{{ example1_cert_path }}'
|
||||||
full_chain_path: '{{ example1_chain_path }}'
|
full_chain_path: '{{ example1_chain_path }}'
|
||||||
csr: '{{ csr_path }}'
|
csr: '{{ csr_path }}'
|
||||||
@@ -115,7 +115,7 @@
|
|||||||
|
|
||||||
- name: Attempt to have ECS generate a signed certificate, but existing one is valid
|
- name: Attempt to have ECS generate a signed certificate, but existing one is valid
|
||||||
ecs_certificate:
|
ecs_certificate:
|
||||||
backup: True
|
backup: true
|
||||||
path: '{{ example1_cert_path }}'
|
path: '{{ example1_cert_path }}'
|
||||||
full_chain_path: '{{ example1_chain_path }}'
|
full_chain_path: '{{ example1_chain_path }}'
|
||||||
csr: '{{ csr_path }}'
|
csr: '{{ csr_path }}'
|
||||||
@@ -145,8 +145,8 @@
|
|||||||
|
|
||||||
- name: Force a reissue with no CSR, verify that contents changed
|
- name: Force a reissue with no CSR, verify that contents changed
|
||||||
ecs_certificate:
|
ecs_certificate:
|
||||||
backup: True
|
backup: true
|
||||||
force: True
|
force: true
|
||||||
path: '{{ example1_cert_path }}'
|
path: '{{ example1_cert_path }}'
|
||||||
full_chain_path: '{{ example1_chain_path }}'
|
full_chain_path: '{{ example1_chain_path }}'
|
||||||
cert_type: '{{ example1_cert_type }}'
|
cert_type: '{{ example1_cert_type }}'
|
||||||
@@ -182,7 +182,7 @@
|
|||||||
csr: '{{ csr_path }}'
|
csr: '{{ csr_path }}'
|
||||||
subject_alt_name: '{{ example4_subject_alt_name }}'
|
subject_alt_name: '{{ example4_subject_alt_name }}'
|
||||||
eku: '{{ example4_eku }}'
|
eku: '{{ example4_eku }}'
|
||||||
ct_log: True
|
ct_log: true
|
||||||
cert_type: '{{ example4_cert_type }}'
|
cert_type: '{{ example4_cert_type }}'
|
||||||
org: '{{ example4_org }}'
|
org: '{{ example4_org }}'
|
||||||
ou: '{{ example4_ou }}'
|
ou: '{{ example4_ou }}'
|
||||||
|
|||||||
Reference in New Issue
Block a user