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: articles/sap/automation/deploy-control-plane.md
+63-3Lines changed: 63 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,11 +64,72 @@ The sample deployer configuration file `MGMT-WEEU-DEP00-INFRASTRUCTURE.tfvars` i
64
64
65
65
The sample SAP library configuration file `MGMT-WEEU-SAP_LIBRARY.tfvars` is located in the `~/Azure_SAP_Automated_Deployment/samples/Terraform/WORKSPACES/LIBRARY/MGMT-WEEU-SAP_LIBRARY` folder.
66
66
67
-
Run the following command to create the deployer and the SAP library. The command adds the service principal details to the deployment key vault. If you followed the web app setup in the previous step, this command also creates the infrastructure to host the application.
67
+
You can copy the sample configuration files to start testing the deployment automation framework.
68
+
69
+
A minimal Terraform file for the `DEPLOYER` might look like this example:
70
+
71
+
```terraform
72
+
# The environment value is a mandatory field, it is used for partitioning the environments.
73
+
environment = "MGMT"
74
+
# The location/region value is a mandatory field, it is used to control where the resources are deployed
75
+
location = "westeurope"
76
+
77
+
# management_network_address_space is the address space for management virtual network
0 commit comments