You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/active-directory/governance/lifecycle-workflow-tasks.md
+7-13Lines changed: 7 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,10 +26,6 @@ Lifecycle Workflow's built-in tasks each include an identifier, known as **taskD
26
26
27
27
Common task parameters are the non-unique parameters contained in every task. When adding tasks to a new workflow, or a workflow template, you can customize and configure these parameters so that they match your requirements.
28
28
29
-
30
-
> [!NOTE]
31
-
> The user's employee hire date is used as the start time for the Temporary Access Pass. Please make sure that the TAP lifetime task setting and the [time portion of your user's hire date](how-to-lifecycle-workflow-sync-attributes.md#importance-of-time) are set appropriately so that the TAP is still valid when the user starts their first day.
32
-
33
29
|Parameter |Definition |
34
30
|---------|---------|
35
31
|category | A read-only string that identifies the category or categories of the task. Automatically determined when the taskDefinitionID is chosen. |
@@ -123,21 +119,23 @@ For Microsoft Graph the parameters for the **Send onboarding reminder email** ta
123
119
124
120
### Generate Temporary Access Pass and send via email to user's manager
125
121
126
-
When a compatible user joins your organization, Lifecycle Workflows allow you to automatically generate a Temporary Access Pass(TAP), and have it sent to the new user's manager.
122
+
When a compatible user joins your organization, Lifecycle Workflows allow you to automatically generate a Temporary Access Pass (TAP), and have it sent to the new user's manager.
123
+
124
+
> [!NOTE]
125
+
> The user's employee hire date is used as the start time for the Temporary Access Pass. Please make sure that the TAP lifetime task setting and the [time portion of your user's hire date](how-to-lifecycle-workflow-sync-attributes.md#importance-of-time) are set appropriately so that the TAP is still valid when the user starts their first day. If the hire date at the time of workflow execution is already in the past, the current time is used as the start time.
127
126
128
127
With this task in the Azure portal, you're able to give the task a name and description. You must also set:
129
128
130
-
**Activation duration**- How long the password is active.
131
-
**One time use**- If the password is one use only.
129
+
-**Activation duration**- How long the passcode is active.
130
+
-**One time use**- If the passcode can only be used once.
132
131
:::image type="content" source="media/lifecycle-workflow-task/tap-task.png" alt-text="Screenshot of Workflows task: TAP task.":::
133
132
134
133
135
134
The Azure AD prerequisites to run the **Generate Temporary Access Pass and send via email to user's manager** task are:
136
135
137
136
- A populated manager attribute for the user.
138
137
- A populated manager's mail attribute for the user.
139
-
- An enabled TAP tenant policy. For more information, see [Enable the Temporary Access Pass policy](../authentication/howto-authentication-temporary-access-pass.md#enable-the-temporary-access-pass-policy)
140
-
138
+
- The TAP tenant policy must be enabled and the selected values for activation duration and one time use must be within the allowed range of the policy. For more information, see [Enable the Temporary Access Pass policy](../authentication/howto-authentication-temporary-access-pass.md#enable-the-temporary-access-pass-policy)
141
139
142
140
> [!IMPORTANT]
143
141
> A user having this task run for them in a workflow must also not have any other authentication methods, sign-ins, or AAD role assignments for this task to work for them.
@@ -175,10 +173,6 @@ For Microsoft Graph the parameters for the **Generate Temporary Access Pass and
175
173
176
174
```
177
175
178
-
> [!NOTE]
179
-
> The employee hire date is the same as the startDateTime used for the tapLifetimeInMinutes parameter.
180
-
181
-
182
176
### Add user to groups
183
177
184
178
Allows users to be added to Microsoft 365 and cloud-only security groups. Mail-enabled, distribution, dynamic and privileged access groups are not supported. To control access to on-premises applications and resources, you need to enable group writeback. For more information, see [Azure AD Connect group writeback](../hybrid/how-to-connect-group-writeback-v2.md).
Copy file name to clipboardExpand all lines: articles/aks/learn/quick-windows-container-deploy-cli.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,23 @@ This article assumes a basic understanding of Kubernetes concepts. For more info
27
27
- If you have multiple Azure subscriptions, select the appropriate subscription ID in which the resources should be billed using the
28
28
[az account](/cli/azure/account) command.
29
29
30
+
- Verify _Microsoft.OperationsManagement_ and _Microsoft.OperationalInsights_ providers are registered on your subscription. These are Azure resource providers required to support Container insights. To check the registration status, run the following commands:
31
+
32
+
```sh
33
+
az provider show -n Microsoft.OperationsManagement -o table
34
+
az provider show -n Microsoft.OperationalInsights -o table
35
+
```
36
+
37
+
If they are not registered, register _Microsoft.OperationsManagement_ and _Microsoft.OperationalInsights_ using the following commands:
38
+
39
+
```sh
40
+
az provider register --namespace Microsoft.OperationsManagement
41
+
az provider register --namespace Microsoft.OperationalInsights
42
+
```
43
+
44
+
> [!NOTE]
45
+
> Run the commands with administrative privileges if you plan to run the commands in this quickstart locally instead of in Azure Cloud Shell.
46
+
30
47
### Limitations
31
48
32
49
The following limitations apply when you create and manage AKS clusters that support multiple node pools:
@@ -408,5 +425,6 @@ To learn more about AKS, and walk through a complete code to deployment example,
Copy file name to clipboardExpand all lines: articles/azure-functions/storage-considerations.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ You can use the following strategies to avoid host ID collisions:
93
93
94
94
You can explicitly set a specific host ID for your function app in the application settings by using the `AzureFunctionsWebHost__hostid` setting. For more information, see [AzureFunctionsWebHost__hostid](functions-app-settings.md#azurefunctionswebhost__hostid).
95
95
96
-
When the collision occurs between slots, you may need to mark this setting as a slot setting. To learn how to create app settings, see [Work with application settings](functions-how-to-use-azure-function-app-settings.md#settings).
96
+
When the collision occurs between slots, you must set a specific host ID for each slot, including the production slot. You must also mark these settings as [deployment settings](functions-deployment-slots.md#create-a-deployment-setting) so they don't get swapped. To learn how to create app settings, see [Work with application settings](functions-how-to-use-azure-function-app-settings.md#settings).
"text": "Hello, you’re chatting with Rene. How may I help you?",
156
156
"id": "1",
157
157
"role": "Agent",
158
-
"participantId": "Agent_1"
158
+
"participantId": "Agent_1",
159
159
},
160
160
{
161
161
"text": "Hi, I tried to set up wifi connection for Smart Brew 300 coffee machine, but it didn’t work.",
162
162
"id": "2",
163
163
"role": "Customer",
164
-
"participantId": "Customer_1"
164
+
"participantId": "Customer_1",
165
165
},
166
166
{
167
167
"text": "I’m sorry to hear that. Let’s see what we can do to fix this issue. Could you please try the following steps for me? First, could you push the wifi connection button, hold for 3 seconds, then let me know if the power light is slowly blinking on and off every second?",
168
168
"id": "3",
169
169
"role": "Agent",
170
-
"participantId": "Agent_1"
170
+
"participantId": "Agent_1",
171
171
},
172
172
{
173
173
"text": "Yes, I pushed the wifi connection button, and now the power light is slowly blinking.",
174
174
"id": "4",
175
175
"role": "Customer",
176
-
"participantId": "Customer_1"
176
+
"participantId": "Customer_1",
177
177
},
178
178
{
179
179
"text": "Great. Thank you! Now, please check in your Contoso Coffee app. Does it prompt to ask you to connect with the machine?",
180
180
"id": "5",
181
181
"role": "Agent",
182
-
"participantId": "Agent_1"
182
+
"participantId": "Agent_1",
183
183
},
184
184
{
185
185
"text": "No. Nothing happened.",
186
186
"id": "6",
187
187
"role": "Customer",
188
-
"participantId": "Customer_1"
188
+
"participantId": "Customer_1",
189
189
},
190
190
{
191
191
"text": "I’m very sorry to hear that. Let me see if there’s another way to fix the issue. Please hold on for a minute.",
Copy file name to clipboardExpand all lines: articles/deployment-environments/configure-catalog-item.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ In Azure Deployment Environments Preview, you can use a [catalog](concept-enviro
19
19
A catalog item is combined of least two files:
20
20
21
21
- An [Azure Resource Manager template (ARM template)](../azure-resource-manager/templates/overview.md) in JSON file format. For example, *azuredeploy.json*.
22
-
- A manifest YAML file (*manifest.yml*).
22
+
- A manifest YAML file (*manifest.yaml*).
23
23
24
24
>[!NOTE]
25
25
> Azure Deployment Environments Preview currently supports only ARM templates.
0 commit comments