Skip to content

Commit 444c238

Browse files
author
Deutsche Telekom MMS
committed
update due to new release
1 parent 6f94e5f commit 444c238

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [1.0.2](https://github.com/telekom-mms/terraform-azurerm-authorization/tree/1.0.2) (2024-10-09)
4+
5+
[Full Changelog](https://github.com/telekom-mms/terraform-azurerm-authorization/compare/1.0.1...1.0.2)
6+
7+
**Implemented enhancements:**
8+
9+
- Add resource for managing user assigned identities [\#7](https://github.com/telekom-mms/terraform-azurerm-authorization/pull/7) ([habr-mms](https://github.com/habr-mms))
10+
311
## [1.0.1](https://github.com/telekom-mms/terraform-azurerm-authorization/tree/1.0.1) (2024-08-28)
412

513
[Full Changelog](https://github.com/telekom-mms/terraform-azurerm-authorization/compare/1.0.0...1.0.1)

README.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,31 +24,55 @@ _<-- This file is autogenerated, please do not change. -->_
2424
| Name | Type |
2525
|------|------|
2626
| azurerm_role_assignment.role_assignment | resource |
27+
| azurerm_user_assigned_identity.user_assigned_identity | resource |
2728

2829
## Inputs
2930

3031
| Name | Description | Type | Default | Required |
3132
|------|-------------|------|---------|:--------:|
3233
| role_assignment | Resource definition, default settings are defined within locals and merged with var settings. For more information look at [Outputs](#Outputs). | `any` | `{}` | no |
34+
| user_assigned_identity | Resource definition, default settings are defined within locals and merged with var settings. For more information look at [Outputs](#Outputs). | `any` | `{}` | no |
3335

3436
## Outputs
3537

3638
| Name | Description |
3739
|------|-------------|
3840
| role_assignments | Outputs all attributes of resource_type. |
41+
| user_assigned_identity | Outputs all attributes of resource_type. |
3942
| 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 |
4043

4144
## Examples
4245

4346
Minimal configuration to install the desired resources with the module
4447

4548
```hcl
46-
49+
module "authorization" {
50+
source = "registry.terraform.io/telekom-mms/authorization/azurerm"
51+
user_assigned_identity = {
52+
uai-mms = {
53+
location = "westeurope"
54+
resource_group_name = "rg-mms-github"
55+
}
56+
}
57+
}
4758
```
4859

4960
Advanced configuration to install the desired resources with the module
5061

5162
```hcl
52-
63+
module "authorization" {
64+
source = "registry.terraform.io/telekom-mms/authorization/azurerm"
65+
user_assigned_identity = {
66+
uai-mms = {
67+
location = "westeurope"
68+
resource_group_name = "rg-mms-github"
69+
tags = {
70+
project = "mms-github"
71+
environment = terraform.workspace
72+
managed-by = "terraform"
73+
}
74+
}
75+
}
76+
}
5377
```
5478
<!-- END_TF_DOCS -->

0 commit comments

Comments
 (0)