Skip to content
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 docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Feathr automatically computes your feature values and joins them to your trainin

Feathr has native cloud integration. To use Feathr on Azure, you only need three steps:

1. Get the `Principal ID` of your account by running `az ad signed-in-user show --query objectId -o tsv` in the link below (Select "Bash" if asked), and write down that value (something like `b65ef2e0-42b8-44a7-9b55-abbccddeefff`). Think this ID as something representing you when accessing Azure, and it will be used to grant permissions in the next step in the UI.
1. Get the `Principal ID` of your account by running `az ad signed-in-user show --query id -o tsv` in the link below (Select "Bash" if asked), and write down that value (something like `b65ef2e0-42b8-44a7-9b55-abbccddeefff`). Think this ID as something representing you when accessing Azure, and it will be used to grant permissions in the next step in the UI.

[Launch Cloud Shell](https://shell.azure.com/bash)

Expand Down
2 changes: 1 addition & 1 deletion docs/how-to-guides/azure-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Due to the complexity of the possible cloud environment, it is almost impossible

Feathr has native cloud integration and getting started with Feathr is very straightforward. You only need three steps:

1. Get the principal ID of your account by running `az ad signed-in-user show --query objectId -o tsv` in the link below (Select "Bash" if you are asked to choose one), and write down that value (will be something like `b65ef2e0-42b8-44a7-9b55-abbccddeefff`)
1. Get the principal ID of your account by running `az ad signed-in-user show --query id -o tsv` in the link below (Select "Bash" if you are asked to choose one), and write down that value (will be something like `b65ef2e0-42b8-44a7-9b55-abbccddeefff`)


[Launch Cloud Shell](https://shell.azure.com/bash)
Expand Down
636 changes: 300 additions & 336 deletions docs/how-to-guides/azure_resource_provision.json

Large diffs are not rendered by default.

9 changes: 3 additions & 6 deletions docs/how-to-guides/deployment/deploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,13 @@
"principalId": {
"type": "string",
"metadata": {
"description": "Specifies the principal ID assigned to the role. You can find it by logging into 'https://shell.azure.com/bash' and run 'az ad signed-in-user show --query objectId -o tsv' "
"description": "Specifies the principal ID assigned to the role. You can find it by logging into 'https://shell.azure.com/bash' and run 'az ad signed-in-user show --query id -o tsv' "
}
},
"allowAllConnections": {
"type": "string",
"defaultValue": "true",
"allowedValues": [
"true",
"false"
],
"allowedValues": ["true", "false"],
"metadata": {
"description": "Specifies whether to allow client IPs to connect to Synapse"
}
Expand Down Expand Up @@ -635,4 +632,4 @@
"value": "[parameters('resourcePrefix')]"
}
}
}
}
2 changes: 1 addition & 1 deletion docs/how-to-guides/deployment/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ targetScope = 'subscription'
@minLength(3)
param resourcePrefix string = 'feathr${take(newGuid(),5)}'

@description('Specifies the principal ID assigned to the role. You can find it by logging into \'https://shell.azure.com/bash\' and run \'az ad signed-in-user show --query objectId -o tsv\' ')
@description('Specifies the principal ID assigned to the role. You can find it by logging into \'https://shell.azure.com/bash\' and run \'az ad signed-in-user show --query id -o tsv\' ')
param principalId string

@description('Specifies whether to allow client IPs to connect to Synapse')
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart_synapse.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ First step is to provision required cloud resources if you want to use Feathr. F

Feathr has native cloud integration. To use Feathr on Azure, you only need three steps:

1. Get the `Principal ID` of your account by running `az ad signed-in-user show --query objectId -o tsv` in the link below (Select "Bash" if asked), and write down that value (something like `b65ef2e0-42b8-44a7-9b55-abbccddeefff`). Think this ID as something representing you when accessing Azure, and it will be used to grant permissions in the next step in the UI.
1. Get the `Principal ID` of your account by running `az ad signed-in-user show --query id -o tsv` in the link below (Select "Bash" if asked), and write down that value (something like `b65ef2e0-42b8-44a7-9b55-abbccddeefff`). Think this ID as something representing you when accessing Azure, and it will be used to grant permissions in the next step in the UI.

[Launch Cloud Shell](https://shell.azure.com/bash)

Expand Down
Loading