Skip to content

Commit 20f480b

Browse files
committed
Adding parameter for authentication method.
1 parent 26b2eb2 commit 20f480b

File tree

4 files changed

+144
-84
lines changed

4 files changed

+144
-84
lines changed

model/model.pb.go

Lines changed: 122 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proto/model.proto

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,12 @@ message LxcTemplate {
117117
}
118118
Template lxc_template = 7 [json_name="lxc_template"];
119119
repeated string node_groups = 8 [json_name="node_groups"];
120+
enum AuthenticationType {
121+
NONE = 0;
122+
PUB_KEY = 1;
123+
}
124+
AuthenticationType authentication_type = 9 [json_name="authentication_type"];
125+
string ssh_public_key = 10 [json_name="ssh_public_key"];
120126
}
121127

122128
message NullTemplate {

0 commit comments

Comments
 (0)