Skip to content

Commit

Permalink
update due to new release
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Systems MMS committed Jun 8, 2023
1 parent 2d39e83 commit 2e8c084
Showing 1 changed file with 75 additions and 0 deletions.
75 changes: 75 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,78 @@ replace the following placeholder
```example
tpl_local_name = container_registry
```

<!-- BEGIN_TF_DOCS -->
# tpl_module

This module manages the tpl_provider tpl_module resources.
For more information see https://registry.terraform.io/providers/tpl_provider/latest/docs > tpl_module

_<-- This file is autogenerated, please do not change. -->_

## Requirements

| Name | Version |
|------|---------|
| terraform | >=1.3 |

## Providers

| Name | Version |
|------|---------|
| tpl | n/a |

## Resources

| Name | Type |
|------|------|
| [tpl_resource_type.tpl_local_name](https://registry.terraform.io/providers/hashicorp/tpl/latest/docs/resources/resource_type) | resource |

## Inputs

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| 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 |

## Outputs

| Name | Description |
|------|-------------|
| tpl_local_name | Outputs all attributes of resource_type. |
| 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 |

## Examples

Minimal configuration to install the desired resources with the module

```hcl
module "tpl_module" {
source = "tpl_source"
tpl_local_name = {
tpl_name = {
location = "westeurope"
resource_group_name = "rg-mms-github"
}
}
}
```

Advanced configuration to install the desired resources with the module

```hcl
module "tpl_module" {
source = "tpl_source"
tpl_local_name = {
tpl_name = {
location = "westeurope"
resource_group_name = "rg-mms-github"
tags = {
project = "mms-github"
environment = terraform.workspace
managed-by = "terraform"
}
}
}
}
```
<!-- END_TF_DOCS -->

0 comments on commit 2e8c084

Please sign in to comment.