Skip to content
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

kms: add support for tagged identities #23

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kms/protobuf/log.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

78 changes: 48 additions & 30 deletions kms/protobuf/request.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions kms/protobuf/request.proto
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,9 @@ message CreateIdentityRequest {

// IsServiceAccount indicates whether the identity is a service account.
bool IsServiceAccount = 3 [ json_name = "service_account" ];

// Tags are optional metadata labels attached to the identity as key-value pairs.
map<string,string> Tags = 4 [ json_name="tags" ];
aead marked this conversation as resolved.
Show resolved Hide resolved
}

message IdentityRequest {
Expand Down
89 changes: 54 additions & 35 deletions kms/protobuf/response.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions kms/protobuf/response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,9 @@ message IdentityResponse {
bool IsServiceAccount = 6 [ json_name = "is_service_account" ];

repeated string ServiceAccounts = 7 [ json_name = "service_accounts" ];

// Tags are optional metadata labels attached to the key as key-value pairs.
map<string,string> Tags = 8 [ json_name="tags" ];
}

message ListIdentitiesResponse {
Expand Down
2 changes: 1 addition & 1 deletion kms/protobuf/rule.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading