#OpenSSL Basics
##Certificate Types
- CA Certificate Authority
- CRL Certificate Revocation List
- CSR Certificate Signing Request
- DCA Deligate Certificate Authority
- DER Data Encryption Standard
- DES Data Encryption Standard
- DH Diffie-Hellmann
#OpenSSL Basics
##Certificate Types
# Created by https://www.toptal.com/developers/gitignore/api/ssl | |
# Edit at https://www.toptal.com/developers/gitignore?templates=ssl | |
*.csr | |
*.pem | |
*.key | |
*.crt | |
# End of https://www.toptal.com/developers/gitignore/api/ssl |
Not all Terraform providers are built for arm64
.
One solution here is to install Terraform as amd64
which can be easily done from the downloads page.
However, for those who are using and switching between versions of Terraform often, a more streamlined approach is desirable.
Enter asdf
.
test: | |
sentinel test -verbose $(shell find . -name "$(name)" -type f ! -path "*/testdata/*") | |
tests: | |
sentinel test $(shell find . -name "*.sentinel" -type f ! -path "*/testdata/*") | |
format: | |
sentinel fmt -write=true $(shell find . -name "*.sentinel" -type f) | |
generate: |
This is commented out. NOTE: Best if viewed in web browser if currently you are viewing this in Lepton
Based from Brad Traversy's cheatsheet. I just updated it to work for my needs.