Skip to content

Commit 2e8c084

Browse files
author
T-Systems MMS
committed
update due to new release
1 parent 2d39e83 commit 2e8c084

File tree

1 file changed

+75
-0
lines changed

1 file changed

+75
-0
lines changed

README.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,78 @@ replace the following placeholder
6767
```example
6868
tpl_local_name = container_registry
6969
```
70+
71+
<!-- BEGIN_TF_DOCS -->
72+
# tpl_module
73+
74+
This module manages the tpl_provider tpl_module resources.
75+
For more information see https://registry.terraform.io/providers/tpl_provider/latest/docs > tpl_module
76+
77+
_<-- This file is autogenerated, please do not change. -->_
78+
79+
## Requirements
80+
81+
| Name | Version |
82+
|------|---------|
83+
| terraform | >=1.3 |
84+
85+
## Providers
86+
87+
| Name | Version |
88+
|------|---------|
89+
| tpl | n/a |
90+
91+
## Resources
92+
93+
| Name | Type |
94+
|------|------|
95+
| [tpl_resource_type.tpl_local_name](https://registry.terraform.io/providers/hashicorp/tpl/latest/docs/resources/resource_type) | resource |
96+
97+
## Inputs
98+
99+
| Name | Description | Type | Default | Required |
100+
|------|-------------|------|---------|:--------:|
101+
| 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
127+
128+
```hcl
129+
module "tpl_module" {
130+
source = "tpl_source"
131+
tpl_local_name = {
132+
tpl_name = {
133+
location = "westeurope"
134+
resource_group_name = "rg-mms-github"
135+
tags = {
136+
project = "mms-github"
137+
environment = terraform.workspace
138+
managed-by = "terraform"
139+
}
140+
}
141+
}
142+
}
143+
```
144+
<!-- END_TF_DOCS -->

0 commit comments

Comments
 (0)