Skip to content

Commit

Permalink
Merge pull request elastic#463 from Jacob-Delgado/allconf-password
Browse files Browse the repository at this point in the history
US14515 now encrypting allconf password
  • Loading branch information
Jacob Delgado authored and Jacob Delgado committed Jan 27, 2016
2 parents cdd2529 + cfafa9c commit 3f3b8b3
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions protofiles/configelements/AllConf.proto
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
package configelements;

import "EncryptedString.proto";

option java_package = "com.logrhythm.configelements";
option java_outer_classname = "AllConfConfigMsg";




message AllConfConfig {
optional string hostIp = 1;
optional int32 hostPort = 2;
optional string assetPath = 3;
optional string configServerQueue = 4;
optional string adminUsername = 5;
optional string adminPassword = 6;
optional string devUsername = 7;
optional string devPassword = 8;
optional EncryptedString adminUsername = 5;
optional EncryptedString adminPassword = 6;
optional EncryptedString devUsername = 7;
optional EncryptedString devPassword = 8;
}

0 comments on commit 3f3b8b3

Please sign in to comment.