added gpg block
All checks were successful
CI / Check License Header (push) Successful in 3s
CI / TruffleHog Secrets Scan (push) Successful in 4s
CI / Terraform CI (push) Successful in 10s

This commit is contained in:
Markus Brunsch 2025-10-31 14:08:03 +01:00
parent 68965c53db
commit 3b4e09c665
Signed by: markus.brunsch
GPG key ID: 67DD0736F0BE59BF

View file

@ -18,6 +18,28 @@ https://opensource.org/licenses/MIT.
*/ */
``` ```
## Setup Git GPG Key
https://docs.codeberg.org/security/gpg-key/
1. Generate GPG Key
```console
gpg --full-generate-key
```
1. Configure Git to use the Key
```console
git config --global user.signingkey <GPG KEY ID>
git config --global commit.gpgsign true
```
1. Read GPG Key and add it to STACKIT Git
```console
gpg --armor --export <GPG KEY ID>
```
Copy the Public Key block and add it into your Profile settings on the STACKIT Git instance.
## Prerequisites ## Prerequisites
Before using this template, ensure you have the following: Before using this template, ensure you have the following: