Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New gpg_keypair module to manage GPG keys. #743

Draft
wants to merge 78 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 43 commits
Commits
Show all changes
78 commits
Select commit Hold shift + click to select a range
f03b55e
new gpg_keypair module to manage GPG keys
austinlucaslake May 1, 2024
3ec2fa1
gpg_keypair module integration tests
austinlucaslake May 1, 2024
312d826
add diff_mode (support: none) to attributes list
austinlucaslake May 1, 2024
adab532
added version_added (2.22.0) to documentation
austinlucaslake May 1, 2024
ccc39b3
added elements qualifier to key_usage
austinlucaslake May 1, 2024
f47bb95
seperated if-else for improved readability
austinlucaslake May 1, 2024
f28ca9c
added dummy variables when extracting output from gpg command
austinlucaslake May 1, 2024
fd63e64
fixed invalid variable name when unpacking matching keys
austinlucaslake May 1, 2024
132e716
added missing punctuation in documentation
austinlucaslake May 1, 2024
f10082b
updated return conditions in documentation
austinlucaslake May 1, 2024
84277a8
removed default key_type
austinlucaslake May 2, 2024
422a248
removed type hints
austinlucaslake May 2, 2024
af95714
updated formating+documentation and added ability to specify multiple…
austinlucaslake May 2, 2024
c3660ec
fixed invalid parameter name
austinlucaslake May 2, 2024
ea6b1d7
added stricter matching passed on user input
austinlucaslake May 5, 2024
c9f89bb
added quotation marks around template expression brackets
austinlucaslake May 5, 2024
86a111a
fixing linting issues
austinlucaslake May 5, 2024
440acfd
syntax error in documentation
austinlucaslake May 5, 2024
60b2175
wrong module name
austinlucaslake May 5, 2024
d5d9c5d
fixed suboptions in documentation for subkeys parameter
austinlucaslake May 5, 2024
81166c7
removed keyserver/transient_key parameters and dependencies on Plugin…
austinlucaslake May 5, 2024
4753860
fixed linting errors
austinlucaslake May 5, 2024
8685426
updated documentation and curve requirements for ECC keys
austinlucaslake May 5, 2024
091c5d4
removed extraneous character that was causing syntax error
austinlucaslake May 6, 2024
965b667
reformated argument lists for run_module calls
austinlucaslake May 6, 2024
4891695
set subkeys parameter default to be empty list
austinlucaslake May 6, 2024
01d6ee2
updated documentation for check_mode and diff_mode attributes
austinlucaslake May 6, 2024
a70469a
fixed over-indentations
austinlucaslake May 6, 2024
90cf712
set defaults for all list-type parameters to empty list and ipdated r…
austinlucaslake May 6, 2024
4a7467a
provide bin path for gpg executable
austinlucaslake May 6, 2024
20fd381
delete key using returned fingerprint
austinlucaslake May 6, 2024
3ff3d83
fixed incorrect variable name when parsing regex
austinlucaslake May 6, 2024
899118f
added missing quotations for template expression
austinlucaslake May 6, 2024
d826d90
consolidated functions and added parameter to force new key generation
austinlucaslake May 6, 2024
9df8799
updated integration test to force new key generation
austinlucaslake May 6, 2024
c77ef5d
fixed syntax errors
austinlucaslake May 6, 2024
051b1be
fixed incorrect variable name during assertion
austinlucaslake May 6, 2024
4c32b07
fixed regex parsing for fingerprint after key generation
austinlucaslake May 6, 2024
8e00694
utilize user-id to match against for key deletion
austinlucaslake May 6, 2024
7ce40a8
removed no_log from fingerprints
austinlucaslake May 6, 2024
6edf177
adding missing extraction of capture group from fingerprint regex
austinlucaslake May 6, 2024
18fabae
updated code spacing and fixed text processing for key matching
austinlucaslake May 9, 2024
540545e
fixed secret key regex parsing and key matching for usage parameter
austinlucaslake May 9, 2024
2255f5e
fixed bad parameter matching
austinlucaslake May 9, 2024
473ee13
added more integration tests
austinlucaslake May 9, 2024
f4e06e5
capitalized GPG in documentation
austinlucaslake May 9, 2024
3bafd3f
add default attributes docs fragment
austinlucaslake May 9, 2024
baaec80
updated documentation and module parameter names
austinlucaslake May 9, 2024
aced2d3
updated filenames to use full .yaml extension and updated jinja2 temp…
austinlucaslake May 10, 2024
2d3faa1
changed parameter names for subkey suboptions and updated documentation
austinlucaslake May 10, 2024
6347b8c
added setup needed for dateutil dependency
austinlucaslake May 10, 2024
18f1c16
module will now fail safely if python-dateutil package is not found
austinlucaslake May 11, 2024
160b241
added option to automatically install python-dateutil and updated doc…
austinlucaslake May 11, 2024
b711ee4
updated parameter name and added versioning to python-dateutil
austinlucaslake May 11, 2024
758fdce
updated email in copyright statement
austinlucaslake May 13, 2024
a3c23a6
Create acme_certificate_deactivate_authz module (#741)
felixfontein May 1, 2024
6e1c1e0
Add tests for acme_certificate_deactivate_authz module. (#744)
felixfontein May 1, 2024
99521df
Refactor time code, add tests, fix bug when parsing absolute timestam…
felixfontein May 3, 2024
15ed057
Add acme_certificate_renewal_info module (#746)
felixfontein May 4, 2024
98c5c52
ACME: improve acme_certificate docs, include cert_id in acme_certific…
felixfontein May 4, 2024
f9f2231
Avoid exception if certificate has no AKI in acme_certificate. (#748)
felixfontein May 5, 2024
044a3be
Refactor and extend argument spec helper, use for ACME modules (#749)
felixfontein May 5, 2024
a147b78
ACME modules: simplify code, refactor argspec handling code, move csr…
felixfontein May 5, 2024
a7f2725
Fix documentation. (#751)
felixfontein May 5, 2024
89da989
ecs_certificate: allow to request renewal without csr (#740)
francescolovecchio May 9, 2024
8752b36
x509_certificate: fix time idempotence (#754)
felixfontein May 11, 2024
704d3ef
Revert all non-bugfixes merged since the last release.
felixfontein May 11, 2024
f9f38d4
Prepare 2.19.1 bugfix release.
felixfontein May 11, 2024
7c46bdd
Release 2.19.1.
felixfontein May 11, 2024
0021a0b
Next planned release is 2.20.0.
felixfontein May 11, 2024
ef9dbda
Revert "Revert all non-bugfixes merged since the last release."
felixfontein May 11, 2024
5809428
Pass codecov token to ansible-test-gh-action. (#755)
felixfontein May 11, 2024
f5e6a57
Make sure the ACME inspect tests run with both backends. (#758)
felixfontein May 12, 2024
2172e77
From now on automatically add period to new plugins in changelog, and…
felixfontein May 20, 2024
3c283d4
Prepare 2.20.0.
felixfontein May 20, 2024
ed3b4aa
Release 2.20.0.
felixfontein May 20, 2024
53b360b
The next expected release will be 2.21.0.
felixfontein May 20, 2024
8800e62
Remove usage of old ACME test container. (#760)
felixfontein May 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Loading