Skip to content

Commit 1acfeb4

Browse files
committed
fix/tflint issues
1 parent be7a670 commit 1acfeb4

File tree

3 files changed

+1
-52
lines changed

3 files changed

+1
-52
lines changed

README.md

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -274,34 +274,6 @@ Type: `string`
274274

275275
The following input variables are optional (have default values):
276276

277-
### <a name="input_dapr_components"></a> [dapr\_components](#input\_dapr\_components)
278-
279-
Description: Specifies the dapr components in the managed environment.
280-
281-
Type:
282-
283-
```hcl
284-
list(object({
285-
name = string
286-
componentType = string
287-
version = string
288-
ignoreErrors = optional(bool)
289-
initTimeout = string
290-
secrets = optional(list(object({
291-
name = string
292-
value = any
293-
})))
294-
metadata = optional(list(object({
295-
name = string
296-
value = optional(any)
297-
secretRef = optional(any)
298-
})))
299-
scopes = optional(list(string))
300-
}))
301-
```
302-
303-
Default: `null`
304-
305277
### <a name="input_enable_telemetry"></a> [enable\_telemetry](#input\_enable\_telemetry)
306278

307279
Description: This variable controls whether or not telemetry is enabled for the module.

locals.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
locals {
2-
role_definition_resource_substring = "/providers/Microsoft.Authorization/roleDefinitions"
3-
location = var.location != null ? var.location : data.azurerm_resource_group.rg.location
2+
location = var.location != null ? var.location : data.azurerm_resource_group.rg.location
43
}

variables.containerapps.tf

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -32,28 +32,6 @@ variable "workload_profile_name" {
3232
default = null
3333
}
3434

35-
variable "dapr_components" {
36-
description = "Specifies the dapr components in the managed environment."
37-
type = list(object({
38-
name = string
39-
componentType = string
40-
version = string
41-
ignoreErrors = optional(bool)
42-
initTimeout = string
43-
secrets = optional(list(object({
44-
name = string
45-
value = any
46-
})))
47-
metadata = optional(list(object({
48-
name = string
49-
value = optional(any)
50-
secretRef = optional(any)
51-
})))
52-
scopes = optional(list(string))
53-
}))
54-
default = null
55-
}
56-
5735
variable "container_apps" {
5836
description = "Specifies the container apps in the managed environment."
5937
type = list(object({

0 commit comments

Comments
 (0)