-
Notifications
You must be signed in to change notification settings - Fork 566
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[4.x] security review for archetypes #8445
Conversation
...rchetype/mp/common/files/src/main/resources/META-INF/microprofile-config.properties.mustache
Outdated
Show resolved
Hide resolved
@@ -318,7 +318,7 @@ docker run --rm --name mysql -p 3306:3306 \ | |||
<value key="jdbcDataSource">com.mysql.cj.jdbc.MysqlDataSource</value> | |||
<value key="databaseUrl">jdbc:mysql://127.0.0.1:3306/pokemon?useSSL=false</value> | |||
<value key="dbUser">user</value> | |||
<value key="userPassword">password</value> | |||
<value key="userPassword">changeit</value> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See the comment about {{userPassword}}
above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
regarding the previous case I agree - fixed. Here, hovewer, the variable name is userPassword
and the value is password
which was changed to changeit
. So, should be correct.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM - Same comment about that variable name
Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
@senivam This needs to be backported to 3.x |
@romain-grecourt ok, will do |
Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
Description
aligning passwords used in archetypes with security requirements.