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: content-gen/docs/AZD_DEPLOYMENT.md
+18-11Lines changed: 18 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,21 +101,28 @@ azd env set embeddingDeploymentCapacity 50
101
101
azd env set azureOpenaiAPIVersion 2024-12-01-preview
102
102
```
103
103
104
-
### 4. Enable Optional Features (WAF Pillars)
104
+
### 4. Choose Deployment Configuration
105
105
106
-
```bash
107
-
# Enable private networking (VNet integration)
108
-
azd env set enablePrivateNetworking true
106
+
The [`infra`](../infra) folder contains the [`main.bicep`](../infra/main.bicep) Bicep script, which defines all Azure infrastructure components for this solution.
By default, the `azd up` command uses the [`main.parameters.json`](../infra/main.parameters.json) file to deploy the solution. This file is pre-configured for a **sandbox environment**.
112
109
113
-
# Enable scalability (auto-scaling, higher SKUs)
114
-
azd env set enableScalability true
110
+
For **production deployments**, the repository also provides [`main.waf.parameters.json`](../infra/main.waf.parameters.json), which applies a [Well-Architected Framework (WAF) aligned](https://learn.microsoft.com/en-us/azure/well-architected/) configuration. This can be used for Production scenarios.
Copy file name to clipboardExpand all lines: content-gen/docs/DEPLOYMENT.md
-23Lines changed: 0 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -161,29 +161,6 @@ Depending on your subscription quota and capacity, you can adjust quota settings
161
161
162
162
</details>
163
163
164
-
### Deployment Options
165
-
166
-
The [`infra`](../infra) folder of the Content Generation Solution Accelerator contains the [`main.bicep`](../infra/main.bicep) Bicep script, which defines all Azure infrastructure components for this solution.
167
-
168
-
By default, the `azd up`command uses the [`main.parameters.json`](../infra/main.parameters.json) file to deploy the solution. This file is pre-configured for a **sandbox environment**.
169
-
170
-
For **production deployments**, the repository also provides [`main.waf.parameters.json`](../infra/main.waf.parameters.json), which applies a [Well-Architected Framework (WAF) aligned](https://learn.microsoft.com/en-us/azure/well-architected/) configuration. This can be used for Production scenarios.
171
-
172
-
**How to choose your deployment configuration:**
173
-
174
-
***To use sandbox/dev environment** — Use the default `main.parameters.json` file.
175
-
176
-
***To use production configuration:**
177
-
178
-
Before running `azd up`, copy the contents from the production configuration file to your main parameters file:
179
-
180
-
1. Navigate to the `infra` folder in your project.
181
-
2. Open `main.waf.parameters.json`in a text editor (like Notepad, VS Code, etc.).
182
-
3. Select all content (Ctrl+A) and copy it (Ctrl+C).
183
-
4. Open `main.parameters.json`in the same text editor.
184
-
5. Select all existing content (Ctrl+A) and paste the copied content (Ctrl+V).
185
-
6. Save the file (Ctrl+S).
186
-
187
164
### Deploying with AZD
188
165
189
166
Once you've opened the project in [Codespaces](#github-codespaces), [Dev Containers](#vs-code-dev-containers), or [locally](#local-environment), you can deploy it to Azure by following the steps in the [AZD Deployment Guide](AZD_DEPLOYMENT.md).
0 commit comments