You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to run step ca as a less privileged user, who can only insert, update, and select from tables, without creating or destroying any tables or databases. The database and tables are only made on the first start, so after they don't need to be recreated. The current implementation here always runs CREATE IF NOT EXISTS rather than just checking existence. I would like to check the existence with a separate query like SHOW TABLES LIKE <X> before trying to create.
Why this is needed
To be able to run step-ca with a less privileged user for security purposes
The text was updated successfully, but these errors were encountered:
What would you like to be added
I want to run step ca as a less privileged user, who can only insert, update, and select from tables, without creating or destroying any tables or databases. The database and tables are only made on the first start, so after they don't need to be recreated. The current implementation here always runs
CREATE IF NOT EXISTS
rather than just checking existence. I would like to check the existence with a separate query likeSHOW TABLES LIKE <X>
before trying to create.Why this is needed
To be able to run step-ca with a less privileged user for security purposes
The text was updated successfully, but these errors were encountered: