-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathaction.yml
More file actions
30 lines (30 loc) · 1.22 KB
/
action.yml
File metadata and controls
30 lines (30 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: "CLI for Microsoft 365 Login"
description: "Log in to tenant using CLI for Microsoft 365"
inputs:
ADMIN_USERNAME:
description: "Username (upn) of the admin."
required: false
ADMIN_PASSWORD:
description: "Password of the admin."
required: false
CERTIFICATE_ENCODED:
description: "Base64-encoded string with certificate private key."
required: false
CERTIFICATE_PASSWORD:
description: "Password for the certificate."
required: false
APP_ID:
description: "App ID of the Entra application to use for authentication. If not specified, use the app specified in the 'CLIMICROSOFT365_ENTRAAPPID' environment variable."
required: false
TENANT:
description: "ID of the tenant from which accounts should be able to authenticate. Use common or organization if the app is multitenant. If not specified, use the tenant specified in the 'CLIMICROSOFT365_TENANT' environment variable. If the environment variable is not defined, use 'common' as the tenant identifier."
required: false
CLI_VERSION:
description: "When specified, installs the requested version or tag of the CLI."
required: false
runs:
using: "node24"
main: "dist/index.js"
branding:
icon: "log-in"
color: "blue"