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
| tpl_local_name | Resource definition, default settings are defined within locals and merged with var settings. For more information look at [Outputs](#Outputs). |`any`|`{}`| no |
102
+
103
+
## Outputs
104
+
105
+
| Name | Description |
106
+
|------|-------------|
107
+
| tpl_local_name | Outputs all attributes of resource_type. |
108
+
| variables | Displays all configurable variables passed by the module. __default__ = predefined values per module. __merged__ = result of merging the default values and custom values passed to the module |
109
+
110
+
## Examples
111
+
112
+
Minimal configuration to install the desired resources with the module
113
+
114
+
```hcl
115
+
module "tpl_module" {
116
+
source = "tpl_source"
117
+
tpl_local_name = {
118
+
tpl_name = {
119
+
location = "westeurope"
120
+
resource_group_name = "rg-mms-github"
121
+
}
122
+
}
123
+
}
124
+
```
125
+
126
+
Advanced configuration to install the desired resources with the module
0 commit comments