Fix environment variable naming inconsistencies in documentation (#5983) #7091
+34
−34
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
assembly-configuring-registry-security.adocRelated Issue
Fixes #5983
Key Changes
The documentation incorrectly used hyphens in environment variable names. According to Quarkus/MicroProfile Config conventions, all hyphens and dots in property names must be converted to underscores when used as environment variables.
Examples of corrections:
APICURIO_UI_AUTH_OIDC_CLIENT-ID→APICURIO_UI_AUTH_OIDC_CLIENT_IDQUARKUS_OIDC_TENANT-ENABLED→QUARKUS_OIDC_TENANT_ENABLEDAPICURIO_AUTH_ROLE-BASED-AUTHORIZATION→APICURIO_AUTH_ROLE_BASED_AUTHORIZATIONAPICURIO_AUTHN_BASIC-CLIENT-CREDENTIALS.ENABLED→APICURIO_AUTHN_BASIC_CLIENT_CREDENTIALS_ENABLEDValidation Performed
UserInterfaceConfigProperties.javaand other config classesdistro/docker-compose/Test Plan