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: docs/azure_jumpstart_hcibox/deployment_az/_index.md
+3-10
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ Azure Bicep is used to deploy HCIBox into your Azure subscription. To deploy, yo
113
113
114
114
>**Note:** Please avoid using the $ symbol in the `windowsAdminPassword`. Using this symbol can cause the LogonScript to fail.
115
115
116
-
- Edit the [main.parameters.json](https://github.com/microsoft/azure_arc/blob/main/azure_jumpstart_hcibox/bicep/main.bicepparam) template parameters file and supply values for your environment.
116
+
- Edit the [main.bicepparam](https://github.com/microsoft/azure_arc/blob/main/azure_jumpstart_hcibox/bicep/main.bicepparam) template parameters file and supply values for your environment.
117
117
118
118
| Name | Type | Description | Default |
119
119
| --- | --- | --- | --- |
@@ -136,14 +136,7 @@ Azure Bicep is used to deploy HCIBox into your Azure subscription. To deploy, yo
136
136
|`windowsAdminPassword`| securestring | Password for Windows account. Password must have 3 of the following: 1 lower case character, 1 upper case character, 1 number, and 1 special character. The value must be between 12 and 123 characters long ||
137
137
|`windowsAdminUsername`| string | Username for Windows account ||
138
138
139
-
>**Disclaimer:** The `governResourceTags` parameter is optional and set to true by default. If not specified, the following tag values will be added:
140
-
141
-
```
142
-
CostControl: 'Ignore'
143
-
SecurityControl: 'Ignore'
144
-
```
145
-
146
-
> Both the `CostControl` and `SecurityControl` tags are applicable to **ONLY Microsoft-internal Azure lab tenants** and designed for managing automated governance processes related to cost optimization and security controls. As mentioned, it will get added to the deployment **only**if the `governResourceTags` parameter was set to true. If you are deploying HCIBox from a Microsoft-internal tenant and Azure subscription, this parameter is required to be set to 'true'. Failure to do so will cause your deployment to have issues and most likely to fail.
139
+
>**Disclaimer:** The *governResourceTags* parameter is optional and set to true by default. If not specified, both *CostControl: 'Ignore'* and *SecurityControl: 'Ignore'* tag values will be added. These tags are applicable to **ONLY Microsoft-internal Azure lab tenants** and designed for managing automated governance processes related to cost optimization and security controls. As mentioned, it will get added to the deployment **only**if the *governResourceTags* parameter was set to true. If you are deploying HCIBox from a Microsoft-internal tenant and Azure subscription, this parameter is required to be set to 'true'. Failure to do so will cause your deployment to have issues and most likely to fail.
147
140
148
141
Example parameter-file:
149
142
@@ -153,7 +146,7 @@ Example parameter-file:
153
146
154
147
```shell
155
148
az group create --name "<resource-group-name>" --location "<location>"
156
-
az deployment group create -g "<resource-group-name>" -f "main.bicep" -p "main.parameters.json"
149
+
az deployment group create -g "<resource-group-name>" -f "main.bicep" -p "main.bicepparam"
Copy file name to clipboardExpand all lines: docs/azure_jumpstart_hcibox/faq/_index.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Jumpstart HCIBox is a turnkey solution that provides a complete sandbox for expl
14
14
15
15
## What is required to deploy HCIBox?
16
16
17
-
HCIBox deployment requires an Azure service principal with Owner role-based access control (RBAC) on an Azure subscription and resource group. You can deploy HCIBox using Azure Bicep or the [Azure Developer CLI](https://learn.microsoft.com/azure/developer/azure-developer-cli/overview). A service principal is required to run the automation scripts that deploy and configure HCIBox features. You can view how the service principal is used by exploring the HCIBox code on our [public GitHub repository](https://github.com/microsoft/azure_arc).
17
+
HCIBox deployment requires an Azure service principal with Owner role-based access control (RBAC) on an Azure subscription and resource group and can be deployed using Azure Bicep. A service principal is required to run the automation scripts that deploy and configure HCIBox features. You can view how the service principal is used by exploring the HCIBox code on our [public GitHub repository](https://github.com/microsoft/azure_arc).
Copy file name to clipboardExpand all lines: docs/azure_jumpstart_hcibox/getting_started/_index.md
+1
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ isGettingStarted: false
5
5
weight: 2
6
6
---
7
7
# Evaluating Azure Local with HCIBox
8
+
8
9
## Getting started
9
10
10
11
HCIBox is a turnkey solution that provides a complete sandbox for exploring [Azure Local](https://learn.microsoft.com/azure-stack/hci/whats-new) capabilities and hybrid cloud integration in a virtualized environment. HCIBox is designed to be completely self-contained within a single Azure subscription and resource group, which will make it easy for a user to get hands-on with Azure Local and [Azure Arc](https://learn.microsoft.com/azure/azure-arc/overview) technology without the need for physical hardware.
Copy file name to clipboardExpand all lines: docs/azure_jumpstart_hcibox/troubleshooting/_index.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ weight: 9
9
9
10
10
Occasionally deployments of HCIBox may fail at various stages. Common reasons for failed deployments include:
11
11
12
-
- Invalid service principal id, service principal secret, or service principal Azure tenant ID provided in _main.parameters.json_ file. This can cause failures when running automation that requires logging into Azure, such as the scripts that register the Azure Local instance, deploy AKS Hybrid, or configure Arc Resource Bridge.
12
+
- Invalid service principal id, service principal secret, or service principal Azure tenant ID provided in the _main.bicepparam_ Bicep template file. This can cause failures when running automation that requires logging into Azure, such as the scripts that register the Azure Local instance, deploy AKS Hybrid, or configure Arc Resource Bridge.
13
13
- Not enough vCPU quota available in your target Azure region - check vCPU quota and ensure you have at least 32 available. See the [prerequisites](../getting_started/#prerequisites) section for more details.
14
14
- Corruption when downloading HCIBox VHD files can interrupt deployments. HCIBox should automatically halt if this occurs. Re-running the PowerShell script at _C:\HCIBox\HCIBoxLogonScript.ps1_ can often repair this issue.
0 commit comments