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
> |`domain_name`| Defines the Windows domain name, for example sap.contoso.net. | Required |
133
+
> |`domain`| Defines the Windows domain Netbios name, for example sap. | Optional |
134
+
> | SQL |||
135
+
> |`use_sql_for_SAP`| Uses the SAP defined SQL Server media, defaults to 'true' | Optional |
136
+
> |`win_cluster_share_type`| Defines the cluster type (CSD/FS), defaults to CSD | Optional |
137
+
101
138
### Miscellaneous
102
139
103
140
> [!div class="mx-tdCol2BreakAll "]
@@ -106,6 +143,7 @@ This table contains the parameters stored in the sap-parameters.yaml file, most
106
143
> |`kv_name`| The name of the Azure key vault containing the system credentials | Required |
107
144
> |`secret_prefix`| The prefix for the name of the secrets for the SID stored in key vault | Required |
108
145
> |`upgrade_packages`| Update all installed packages on the virtual machines | Required |
146
+
> |`use_msi_for_clusters`| Use managed identities for fencing | Required |
109
147
110
148
### Disks
111
149
@@ -161,7 +199,7 @@ In order to install the Oracle backend using the SAP on Azure Deployment Automat
161
199
> | `ora_release` | The Oracle release version, for example 19.0.0 | Required |
162
200
> | `oracle_sbp_patch` | The Oracle SBP patch file name | Required |
163
201
164
-
### Shared Home support
202
+
#### Shared Home support
165
203
166
204
To configure shared home support for Oracle, you need to add a dictionary defining the SIDs to be deployed. You can do that by adding the parameter 'MULTI_SIDS' that contains a list of the SIDs and the SID details.
167
205
@@ -184,6 +222,32 @@ Each row must specify the following parameters.
184
222
> | `app_inst_no` | The APP instance number for the instance | Required |
185
223
186
224
225
+
## Overriding the default parameters
226
+
227
+
You can override the default parameters by either specifying them in the sap-parameters.yaml file or by passing them as command line parameters to the Ansible playbooks.
228
+
229
+
For example if you want to override the default value of the group ID for the sapinst group (`sapinst_gid`) parameter, you can do it by adding the following line to the sap-parameters.yaml file:
230
+
231
+
```yaml
232
+
sapinst_gid: 1000
233
+
```
234
+
235
+
If you want to provide them as parameters for the Ansible playbooks, you can do it by adding the following parameter to the command line:
You can also override the default parameters by specifying them in the `configuration_settings' variable in your tfvars file. For example, if you want to override 'sapinst_gid' your tfvars file should contain the following line:
0 commit comments