Skip to content

Commit

Permalink
Use accessor for tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
vcastellm committed Mar 31, 2024
1 parent e2a86ac commit b2d5928
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 69 deletions.
4 changes: 2 additions & 2 deletions proto/pro.proto
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ message ACLTokenUpsertResponse {
}

message ACLTokenDeleteRequest {
string token = 1;
string accessor = 1;
}

message ACLTokenDeleteResponse {
bool success = 1;
}

message ACLTokenInfoRequest {
string token = 1;
string accessor = 1;
}

message ACLTokenInfoResponse {
Expand Down
133 changes: 67 additions & 66 deletions types/pro.pb.go

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

3 changes: 2 additions & 1 deletion website/docs/pro/executors/ecs.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ Example using an existing taskdef
"cluster": "default",
"env": "ENVIRONMENT=variable",
"service": "mycontainer",
"overrides": "echo,\"Hello from dkron\""
"overrides": "echo,\"Hello from dkron\"",
"propagateTags": "TASK_DEFINITION"
}
}
```
Expand Down

0 comments on commit b2d5928

Please sign in to comment.