Skip to content

Commit dda96e7

Browse files
authored
Merge pull request #11 from levchykm/feat/upgrade-to-azurerm-v4
feat: upgrade to AzureRM v4
2 parents 657934d + 64a29db commit dda96e7

File tree

2 files changed

+22
-21
lines changed

2 files changed

+22
-21
lines changed

README.md

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,41 +9,42 @@ Terraform module for creation Azure Logic App Workflow
99
| Name | Version |
1010
|------|---------|
1111
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
12-
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | >= 3.23.0 |
12+
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | >= 4.0.1 |
1313

1414
## Providers
1515

1616
| Name | Version |
1717
|------|---------|
18-
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | >= 3.23.0 |
18+
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | >= 4.0.1 |
1919

2020
## Modules
2121

2222
No modules.
2323

2424
## Resources
2525

26-
| Name | Type |
27-
|-------------------------------------------------------------------------------------------------------------------------------------------------------|-----------|
28-
| [azurerm_logic_app_workflow.this](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/logic_app_workflow) | resource |
29-
| [azurerm_monitor_diagnostic_setting.this](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/monitor_diagnostic_setting) | resource |
26+
| Name | Type |
27+
|------|------|
28+
| [azurerm_logic_app_workflow.this](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/logic_app_workflow) | resource |
29+
| [azurerm_monitor_diagnostic_setting.this](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/monitor_diagnostic_setting) | resource |
30+
| [azurerm_monitor_diagnostic_categories.this](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/data-sources/monitor_diagnostic_categories) | data source |
3031

3132
## Inputs
3233

33-
| Name | Description | Type | Default | Required |
34-
|----------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------|----------------|-------------|:--------:|
35-
| <a name="input_env"></a> [env](#input\_env) | Environment | `string` | n/a | yes |
36-
| <a name="input_identity_ids"></a> [identity\_ids](#input\_identity\_ids) | List of user assigned identity IDs | `list(string)` | `null` | no |
37-
| <a name="input_location"></a> [location](#input\_location) | Location | `string` | n/a | yes |
38-
| <a name="input_name"></a> [name](#input\_name) | Logic app name | `string` | n/a | yes |
39-
| <a name="input_parameters"></a> [parameters](#input\_parameters) | Parameters | `any` | `{}` | no |
40-
| <a name="input_project"></a> [project](#input\_project) | Project name | `string` | n/a | yes |
41-
| <a name="input_resource_group"></a> [resource\_group](#input\_resource\_group) | Resource group name | `string` | n/a | yes |
42-
| <a name="input_tags"></a> [tags](#input\_tags) | Tags | `map(string)` | n/a | yes |
43-
| <a name="input_workflow_parameters"></a> [workflow\_parameters](#input\_workflow\_parameters) | Workflow parameters | `any` | `{}` | no |
44-
| <a name="input_analytics_workspace_id"></a> [analytics\_workspace\_id](#input\_analytics\_workspace\_id) | Resource ID of Log Analytics workspace | `string` | `null` | no |
45-
| <a name="input_analytics_destination_type"></a> [analytics\_destination\_type](#input\_analytics\_destination\_type) | Possible values are AzureDiagnostics and Dedicated. | `string` | `Dedicated` | no |
46-
| <a name="input_enable_diagnostic_setting"></a> [enable\_diagnostic\_setting](#input\_enable\_diagnostic\_setting) | Enable diagnostic setting. var.analytics_workspace_id must be provided | `bool` | `false` | no |
34+
| Name | Description | Type | Default | Required |
35+
|------|-------------|------|---------|:--------:|
36+
| <a name="input_analytics_destination_type"></a> [analytics\_destination\_type](#input\_analytics\_destination\_type) | Possible values are AzureDiagnostics and Dedicated. | `string` | `"Dedicated"` | no |
37+
| <a name="input_analytics_workspace_id"></a> [analytics\_workspace\_id](#input\_analytics\_workspace\_id) | Resource ID of Log Analytics Workspace | `string` | `null` | no |
38+
| <a name="input_enable_diagnostic_setting"></a> [enable\_diagnostic\_setting](#input\_enable\_diagnostic\_setting) | Enable diagnostic setting. var.analytics\_workspace\_id must be provided | `bool` | `false` | no |
39+
| <a name="input_env"></a> [env](#input\_env) | Environment | `string` | n/a | yes |
40+
| <a name="input_identity_ids"></a> [identity\_ids](#input\_identity\_ids) | List of user assigned identity IDs | `list(string)` | `null` | no |
41+
| <a name="input_location"></a> [location](#input\_location) | Location | `string` | n/a | yes |
42+
| <a name="input_name"></a> [name](#input\_name) | Logic app name | `string` | n/a | yes |
43+
| <a name="input_parameters"></a> [parameters](#input\_parameters) | Parameters | `any` | `{}` | no |
44+
| <a name="input_project"></a> [project](#input\_project) | Project name | `string` | n/a | yes |
45+
| <a name="input_resource_group"></a> [resource\_group](#input\_resource\_group) | Resource group name | `string` | n/a | yes |
46+
| <a name="input_tags"></a> [tags](#input\_tags) | Tags | `map(string)` | n/a | yes |
47+
| <a name="input_workflow_parameters"></a> [workflow\_parameters](#input\_workflow\_parameters) | Workflow parameters | `any` | `{}` | no |
4748

4849
## Outputs
4950

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
azurerm = {
66
source = "hashicorp/azurerm"
7-
version = ">= 3.40.0"
7+
version = ">= 4.0.1"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)