Skip to content

Commit

Permalink
replace identityconfig with authconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Lily Pan committed Mar 26, 2024
1 parent 2f59233 commit aa05cb4
Show file tree
Hide file tree
Showing 8 changed files with 500 additions and 499 deletions.
223 changes: 223 additions & 0 deletions pkg/proto/nbcontract/v1/authconfig.pb.go

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

13 changes: 13 additions & 0 deletions pkg/proto/nbcontract/v1/authconfig.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
syntax = "proto3";
package nbcontract.v1;

// Auth Config fields stored in azure.json used by cloud-provider-azure
message AuthConfig {
string target_cloud = 1; // set to cloud, can probably get rid of this, analyze more
string tenant_id = 2;
string subscription_id = 3;
string service_principal_id = 4; // set to aadClientId
string service_principal_secret = 5; // set to aadClientSecret
string assigned_identity_id = 6; //could be user or system assigned, depending on the type
bool use_managed_identity_extension = 7;
}
Loading

0 comments on commit aa05cb4

Please sign in to comment.