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
@@ -98,13 +99,15 @@ Next, you need to point your other Terraform module files to your custom naming
98
99
-`deploy\terraform\run\sap_library\module.tf`
99
100
-`deploy\terraform\run\sap_deployer\module.tf`
100
101
101
-
For each file, change the source for the module `sap_namegenerator` to point to your new naming module's location. For example `module "sap_namegenerator" { source = "../../terraform-units/modules/sap_namegenerator"` becomes `module "sap_namegenerator" { source = "../../../../Contoso_naming"`.
102
+
For each file, change the source for the module `sap_namegenerator` to point to your new naming module's location. For example:
To change your resource group's naming logic, navigate to your custom naming module folder (for example, `Workspaces\Contoso_naming`). Then, edit the file `resourcegroup.tf`. Modify the following code with your own naming logic.
106
109
107
-
```json
110
+
```terraform
108
111
locals {
109
112
110
113
// Resource group naming
@@ -135,7 +138,7 @@ To change your resource suffixes, navigate to your custom naming module folder (
135
138
> Only change the map **values**. Don't change the map **key**, which the Terraform code uses.
136
139
> For example, if you want to rename the administrator network interface component, change `"admin-nic" = "-admin-nic"` to `"admin-nic" = "yourNICname"`.
0 commit comments