Skip to content

Commit

Permalink
feat: disable the APIKEY authentication in the cloud-agent
Browse files Browse the repository at this point in the history
Signed-off-by: Yurii Shynbuiev <[email protected]>
  • Loading branch information
yshyn-iohk committed Dec 12, 2024
1 parent 248ba5f commit 580fec7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,12 @@ agent {
# enabled is used to enable/disable the api key authentication
# if apikey authentication is disabled, the alternative authentication method is used
# if the alternative authentication method is not configured, apikey authentication is disabled the default user is used
enabled = true
enabled = false
enabled = ${?API_KEY_ENABLED}

# authenticateAsDefaultUser is used to authenticate the api key as the default user
# if authenticateAsDefaultUser is disabled, the api key is authenticated to the entity that owns the api key
authenticateAsDefaultUser = false
authenticateAsDefaultUser = true
authenticateAsDefaultUser = ${?API_KEY_AUTHENTICATE_AS_DEFAULT_USER}

# autoProvisioning is used to enable/disable the auto-provisioning logic
Expand Down

0 comments on commit 580fec7

Please sign in to comment.