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

Add project_id field #308

Merged
merged 3 commits into from
Apr 12, 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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ endef
define set_build_env
git submodule init
git submodule update
docker build -t ${DOCKER_NAME} .
docker build --platform=linux/x86_64 -t ${DOCKER_NAME} .
endef

define build
Expand Down
10 changes: 5 additions & 5 deletions proto/spaceone/api/identity/v2/agent.proto
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ message AgentInfo {
State state = 5;
bool is_managed = 6;
RoleType role_type = 7;
ResourceGroup resource_group = 20;
string domain_id = 21;
string workspace_id = 22;
string service_account_id = 23;
string app_id = 24;
string role_id = 25;
string client_id = 26;
string project_id = 23;
string service_account_id = 24;
string app_id = 25;
string role_id = 26;
string client_id = 27;
string created_at = 31;
string expired_at = 32;
string last_accessed_at = 33;
Expand Down
Loading