Skip to content

Commit 2e53288

Browse files
committed
Misc updates
1 parent ec8e958 commit 2e53288

File tree

4 files changed

+29
-10
lines changed

4 files changed

+29
-10
lines changed

articles/virtual-machines/workloads/sap/automation-configure-control-plane.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The control plane for the [SAP deployment automation framework on Azure](automat
1919

2020
## Deployer
2121

22-
The [deployer](automation-deployment-framework.md#deployment-components) is the execution engine of the [SAP automation framework](automation-deployment-framework.md). It is a pre-configured virtual machine (VM) that is used for executing Terraform and Ansible commands.
22+
The [deployer](automation-deployment-framework.md#deployment-components) is the execution engine of the [SAP automation framework](automation-deployment-framework.md). It's a pre-configured virtual machine (VM) that is used for executing Terraform and Ansible commands.
2323

2424
The configuration of the deployer is performed in a Terraform tfvars variable file.
2525

@@ -159,21 +159,29 @@ The table below defines the parameters used for defining the Key Vault informati
159159
160160
### Example parameters file for deployer (required parameters only)
161161

162-
```bash
162+
```terraform
163163
# The environment value is a mandatory field, it is used for partitioning the environments, for example (PROD and NP)
164164
environment="MGMT"
165+
165166
# The location/region value is a mandatory field, it is used to control where the resources are deployed
166167
location="westeurope"
167168
168169
# management_network_address_space is the address space for management virtual network
169170
management_network_address_space="10.10.20.0/25"
171+
170172
# management_subnet_address_prefix is the address prefix for the management subnet
171173
management_subnet_address_prefix="10.10.20.64/28"
174+
172175
# management_firewall_subnet_address_prefix is the address prefix for the firewall subnet
173176
management_firewall_subnet_address_prefix="10.10.20.0/26"
174177
178+
# management_bastion_subnet_address_prefix is a mandatory parameter if bastion is deployed and if the subnets are not defined in the workload or if existing subnets are not used
179+
management_bastion_subnet_address_prefix = "10.10.20.128/26"
180+
175181
deployer_enable_public_ip=false
182+
176183
firewall_deployment=true
184+
177185
bastion_deployment=true
178186
```
179187

@@ -253,15 +261,19 @@ The table below contains the parameters that define the resource group and the r
253261
254262
### Example parameters file for sap library (required parameters only)
255263

256-
```bash
264+
```terraform
257265
# The environment value is a mandatory field, it is used for partitioning the environments, for example (PROD and NP)
258266
environment="MGMT"
267+
259268
# The location/region value is a mandatory field, it is used to control where the resources are deployed
260269
location="westeurope"
270+
261271
# The deployer_environment value is a mandatory field, it is used for identifying the deployer
262272
deployer_environment="MGMT"
273+
263274
# The deployer_location value is a mandatory field, it is used for identifying the deployer
264275
deployer_location="westeurope"
276+
265277
# The deployer_vnet value is a mandatory field, it is used for identifying the deployer
266278
deployer_vnet="DEP00"
267279

articles/virtual-machines/workloads/sap/automation-configure-system.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ The automation framework can be used to deploy the following SAP architectures:
2929

3030
### Standalone
3131

32-
In the Standalone architecture all the SAP roles are installed on a single server.
32+
In the Standalone architecture, all the SAP roles are installed on a single server.
33+
3334

3435
To configure this topology, define the database tier values and set `enable_app_tier_deployment` to false.
3536

@@ -40,7 +41,7 @@ To configure this topology, define the database tier values and define `scs_serv
4041

4142
### High Availability
4243

43-
The Distributed (Highly Available) deployment is similar to the Distributed architecture but either the database or SAP Central Services are both highly available using two virtual machines each with Pacemaker clusters.
44+
The Distributed (Highly Available) deployment is similar to the Distributed architecture. In this deployment, the database and/or SAP Central Services can both be configured using a highly available configuration using two virtual machines each with Pacemaker clusters.
4445

4546
To configure this topology, define the database tier values and set `database_high_availability` to true. Set `scs_server_count = 1` and `scs_high_availability` = true and
4647
`application_server_count` >= 1
@@ -192,7 +193,7 @@ The application tier defines the infrastructure for the application tier, which
192193
193194
## Network parameters
194195

195-
If the subnets are not deployed using the workload zone deployment, they can be added in the system's tfvars file.
196+
If the subnets aren't deployed using the workload zone deployment, they can be added in the system's tfvars file.
196197

197198
The automation framework can either deploy the virtual network and the subnets (green field deployment) or using an existing virtual network and existing subnets (brown field deployments).
198199
- For the green field scenario, the virtual network address space and the subnet address prefixes must be specified
@@ -335,7 +336,9 @@ By default the SAP System deployment uses the credentials from the SAP Workload
335336

336337
## Oracle parameters
337338

338-
When deploying Oracle based systems these parameters need to be updated in the sap-parameters.yaml file.
339+
> [!NOTE]
340+
> These parameters need to be updated in the sap-parameters.yaml file when deploying Oracle based systems.
341+
339342

340343
> [!div class="mx-tdCol2BreakAll "]
341344
> | Variable | Description | Type | Notes |

articles/virtual-machines/workloads/sap/automation-configure-workload-zone.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The table below contains the parameters that define the resource group.
5454

5555
## Network Parameters
5656

57-
The automation framework supports both creating the virtual network and the subnets For green field deployments. (Green field) or using an existing virtual network and existing subnets For brown field deployments. (Brown field) or a combination of For green field deployments. and For brown field deployments..
57+
The automation framework supports both creating the virtual network and the subnets For green field deployments. (Green field) or using an existing virtual network and existing subnets For brown field deployments. (Brown field) or a combination of For green field deployments. and For brown field deployments.
5858
- For the green field scenario, the virtual network address space and the subnet address prefixes must be specified
5959
- For the brown field scenario, the Azure resource identifier for the virtual network and the subnets must be specified
6060

@@ -143,7 +143,6 @@ automation_username = "azureadm"
143143

144144
## Key Vault Parameters
145145

146-
147146
The table below defines the parameters used for defining the Key Vault information
148147

149148
> [!div class="mx-tdCol2BreakAll "]
@@ -153,7 +152,7 @@ The table below defines the parameters used for defining the Key Vault informati
153152
> | `spn_keyvault_id` | Azure resource identifier for the deployment credentials (SPNs) key vault | Optional |
154153
155154

156-
## DNS
155+
## Private DNS
157156

158157

159158
> [!div class="mx-tdCol2BreakAll "]

articles/virtual-machines/workloads/sap/automation-deployment-framework.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,8 @@ The following diagram shows the relationships between SAP systems, workload zone
141141

142142
> [!div class="nextstepaction"]
143143
> [Get started with the deployment automation framework](automation-get-started.md)
144+
> [Configuring Azure DevOps for the automation framwework](automation-configure-devops.md)
145+
> [Configuring the control plane](automation-configure-control-plane.md)
146+
> [Configuring the workload zone](automation-configure-workload-zone.md)
147+
> [Configuring the SAP System](automation-configure-system.md)
148+

0 commit comments

Comments
 (0)