-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Restrict remaining days to also work with short-lived profiles. * Adjust boolean cases. * Fix spelling error. * Use larger key size for TLS-ALPN test certificate.
- Loading branch information
1 parent
2482505
commit 0723184
Showing
17 changed files
with
37 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,7 +77,7 @@ | |
modify_account: true | ||
deactivate_authzs: false | ||
force: false | ||
remaining_days: 10 | ||
remaining_days: 1 | ||
terms_agreed: true | ||
account_email: "[email protected]" | ||
retrieve_all_alternates: true | ||
|
@@ -104,7 +104,7 @@ | |
modify_account: false | ||
deactivate_authzs: true | ||
force: false | ||
remaining_days: 10 | ||
remaining_days: 1 | ||
terms_agreed: false | ||
account_email: "" | ||
acme_expected_root_number: 0 | ||
|
@@ -140,7 +140,7 @@ | |
modify_account: false | ||
deactivate_authzs: false | ||
force: false | ||
remaining_days: 10 | ||
remaining_days: 1 | ||
terms_agreed: false | ||
account_email: "" | ||
acme_expected_root_number: 0 | ||
|
@@ -167,7 +167,7 @@ | |
modify_account: false | ||
deactivate_authzs: true | ||
force: true | ||
remaining_days: 10 | ||
remaining_days: 1 | ||
terms_agreed: false | ||
account_email: "" | ||
acme_expected_root_number: 2 | ||
|
@@ -194,15 +194,15 @@ | |
modify_account: false | ||
deactivate_authzs: true | ||
force: true | ||
remaining_days: 10 | ||
remaining_days: 1 | ||
terms_agreed: false | ||
account_email: "" | ||
use_csr_content: true | ||
- name: Store obtain results for cert 5a | ||
set_fact: | ||
cert_5a_obtain_results: "{{ certificate_obtain_result }}" | ||
cert_5_alternate: "{{ 0 if select_crypto_backend == 'cryptography' else 0 }}" | ||
- name: Obtain cert 5 (should not, since already there and valid for more than 10 days) | ||
- name: Obtain cert 5 (should not, since already there and valid for more than 1 days) | ||
include_tasks: obtain-cert.yml | ||
vars: | ||
certgen_title: Certificate 5, Iteration 2/4 | ||
|
@@ -215,7 +215,7 @@ | |
modify_account: false | ||
deactivate_authzs: true | ||
force: false | ||
remaining_days: 10 | ||
remaining_days: 1 | ||
terms_agreed: false | ||
account_email: "" | ||
use_csr_content: false | ||
|
@@ -260,7 +260,7 @@ | |
modify_account: false | ||
deactivate_authzs: true | ||
force: true | ||
remaining_days: 10 | ||
remaining_days: 1 | ||
terms_agreed: false | ||
account_email: "" | ||
use_csr_content: false | ||
|
@@ -283,7 +283,7 @@ | |
modify_account: true | ||
deactivate_authzs: false | ||
force: false | ||
remaining_days: 10 | ||
remaining_days: 1 | ||
terms_agreed: true | ||
account_email: "[email protected]" | ||
acme_expected_root_number: 0 | ||
|
@@ -319,7 +319,7 @@ | |
modify_account: true | ||
deactivate_authzs: false | ||
force: false | ||
remaining_days: 10 | ||
remaining_days: 1 | ||
terms_agreed: true | ||
account_email: "[email protected]" | ||
acme_expected_root_number: 2 | ||
|
@@ -339,7 +339,7 @@ | |
certgen_title: Certificate 8 | ||
certificate_name: cert-8 | ||
key_type: rsa | ||
rsa_bits: "{{ default_rsa_key_size }}" | ||
rsa_bits: "{{ default_rsa_key_size_certificates }}" | ||
subject_alt_name: | ||
- "IP:127.0.0.1" | ||
# IPv4 only since our test validation server doesn't work | ||
|
@@ -351,7 +351,7 @@ | |
modify_account: true | ||
deactivate_authzs: false | ||
force: false | ||
remaining_days: 10 | ||
remaining_days: 1 | ||
terms_agreed: true | ||
account_email: "[email protected]" | ||
use_csr_content: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters