Skip to content

Commit

Permalink
make it clear we expect pem format not some other formate (#8344)
Browse files Browse the repository at this point in the history
  • Loading branch information
SwampDragons authored and azr committed Nov 7, 2019
1 parent d4a58f5 commit d5ba530
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion builder/azure/common/client/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ type Config struct {
ClientID string `mapstructure:"client_id"`
// A password/secret registered for the AAD SP.
ClientSecret string `mapstructure:"client_secret"`
// The path to a certificate that will be used to authenticate as the specified AAD SP.
// The path to a pem-encoded certificate that will be used to authenticate
// as the specified AAD SP.
ClientCertPath string `mapstructure:"client_cert_path"`
// A JWT bearer token for client auth (RFC 7523, Sec. 2.2) that will be used
// to authenticate the AAD SP. Provides more control over token the expiration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@

- `client_secret` (string) - A password/secret registered for the AAD SP.

- `client_cert_path` (string) - The path to a certificate that will be used to authenticate as the specified AAD SP.
- `client_cert_path` (string) - The path to a pem-encoded certificate that will be used to authenticate
as the specified AAD SP.

- `client_jwt` (string) - A JWT bearer token for client auth (RFC 7523, Sec. 2.2) that will be used
to authenticate the AAD SP. Provides more control over token the expiration
Expand Down

0 comments on commit d5ba530

Please sign in to comment.