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
14 changes: 14 additions & 0 deletions documents/CustomizeData.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,17 @@ If you would like to update the solution to leverage your own data please follow
```
a. resourcegroupname_param - the name of the resource group.

> Note (WAF‑aligned deployments): If you deployed the solution with the WAF / private networking option enabled, you must run the data processing script **from inside the deployed VM (jumpbox / processing VM)** so it can reach the private endpoints. Follow these steps:
>
> 1. Connect to the VM (Azure Bastion, SSH, or RDP depending on OS).
> 2. Ensure the repo (or the `infra/scripts` folder) is present. If not, clone or pull it.
> 3. Open a Bash-compatible shell (Git Bash on Windows, or native bash on Linux).
> 4. Run `az login` (add `--tenant <tenantId>` if required by your org policy).
> 5. Navigate to `infra/scripts` and execute:
> ```bash
> bash run_process_data_scripts.sh <resource-group-name>
> ```
> 6. Replace `<resource-group-name>` with the name of the resource group you deployed (same value used for `resourcegroupname_param`).
>
> Tip: If Azure CLI is not installed on the VM, install it first (see official docs) before running the script.

3 changes: 2 additions & 1 deletion documents/CustomizingAzdParameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ By default this template will use the environment name as the prefix to prevent
| `AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID` | string | Guide to get your [Existing Workspace ID](/documents/re-use-log-analytics.md) | Reuses an existing Log Analytics Workspace instead of creating a new one. |
| `USE_LOCAL_BUILD` | string | `false` | Indicates whether to use a local container build for deployment. |
| `AZURE_EXISTING_AI_PROJECT_RESOURCE_ID` | string | `<Existing AI Project resource Id>` | Reuses an existing AIFoundry and AIFoundryProject instead of creating a new one. |

| `AZURE_ENV_VM_ADMIN_USERNAME` | string | `take(newGuid(), 20)` | The administrator username for the virtual machine. |
| `AZURE_ENV_VM_ADMIN_PASSWORD` | string | `newGuid()` | The administrator password for the virtual machine. |


## How to Set a Parameter
Expand Down
62 changes: 0 additions & 62 deletions infra/create-sql-user-and-role.bicep

This file was deleted.

Loading