zitadel/cmd/initialise
Tim Möhlmann 64a3bb3149
feat(v3alpha): web key resource (#8262)
# Which Problems Are Solved

Implement a new API service that allows management of OIDC signing web
keys.
This allows users to manage rotation of the instance level keys. which
are currently managed based on expiry.

The API accepts the generation of the following key types and
parameters:

- RSA keys with 2048, 3072 or 4096 bit in size and:
  - Signing with SHA-256 (RS256)
  - Signing with SHA-384 (RS384)
  - Signing with SHA-512 (RS512)
- ECDSA keys with
  - P256 curve
  - P384 curve
  - P512 curve
- ED25519 keys

# How the Problems Are Solved

Keys are serialized for storage using the JSON web key format from the
`jose` library. This is the format that will be used by OIDC for
signing, verification and publication.

Each instance can have a number of key pairs. All existing public keys
are meant to be used for token verification and publication the keys
endpoint. Keys can be activated and the active private key is meant to
sign new tokens. There is always exactly 1 active signing key:

1. When the first key for an instance is generated, it is automatically
activated.
2. Activation of the next key automatically deactivates the previously
active key.
3. Keys cannot be manually deactivated from the API
4. Active keys cannot be deleted

# Additional Changes

- Query methods that later will be used by the OIDC package are already
implemented. Preparation for #8031
- Fix indentation in french translation for instance event
- Move user_schema translations to consistent positions in all
translation files

# Additional Context

- Closes #8030
- Part of #7809

---------

Co-authored-by: Elio Bischof <elio@zitadel.com>
2024-08-14 14:18:14 +00:00
..
sql fix(init): add setting to enable durable locks on crdb (#7982) 2024-05-27 09:03:34 +00:00
config.go feat(v3alpha): web key resource (#8262) 2024-08-14 14:18:14 +00:00
helper.go chore: use pgx v5 (#7577) 2024-03-27 15:48:22 +02:00
init_test.go refactor(fmt): run gci on complete project (#7557) 2024-04-03 10:43:43 +00:00
init.go feat(cmd): mirror (#7004) 2024-05-30 09:35:30 +00:00
verify_database_test.go fix(init): correct quoting of database and user (#6928) 2023-12-03 08:30:08 +00:00
verify_database.go feat: api v2beta to api v2 (#8283) 2024-07-26 22:39:55 +02:00
verify_grant_test.go fix(init): correct quoting of database and user (#6928) 2023-12-03 08:30:08 +00:00
verify_grant.go feat: block instances (#7129) 2024-01-17 10:16:48 +00:00
verify_settings.go fix(init): add setting to enable durable locks on crdb (#7982) 2024-05-27 09:03:34 +00:00
verify_user_test.go fix(init): correct quoting of database and user (#6928) 2023-12-03 08:30:08 +00:00
verify_user.go feat: block instances (#7129) 2024-01-17 10:16:48 +00:00
verify_zitadel_test.go fix(db): always use begin tx (#7142) 2024-01-04 16:12:20 +00:00
verify_zitadel.go feat: api v2beta to api v2 (#8283) 2024-07-26 22:39:55 +02:00