Skip to content

Commit aa92195

Browse files
authored
fix: Fixed misleading descriptions of IAM role (not Lambda) (#76)
1 parent e9a7813 commit aa92195

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -469,11 +469,11 @@ No modules.
469469
| <a name="input_policy_json"></a> [policy\_json](#input\_policy\_json) | An additional policy document as JSON to attach to IAM role | `string` | `null` | no |
470470
| <a name="input_policy_jsons"></a> [policy\_jsons](#input\_policy\_jsons) | List of additional policy documents as JSON to attach to IAM role | `list(string)` | `[]` | no |
471471
| <a name="input_policy_statements"></a> [policy\_statements](#input\_policy\_statements) | Map of dynamic policy statements to attach to IAM role | `any` | `{}` | no |
472-
| <a name="input_role_description"></a> [role\_description](#input\_role\_description) | Description of IAM role to use for Lambda Function | `string` | `null` | no |
472+
| <a name="input_role_description"></a> [role\_description](#input\_role\_description) | Description of IAM role to use for EventBridge | `string` | `null` | no |
473473
| <a name="input_role_force_detach_policies"></a> [role\_force\_detach\_policies](#input\_role\_force\_detach\_policies) | Specifies to force detaching any policies the IAM role has before destroying it. | `bool` | `true` | no |
474-
| <a name="input_role_name"></a> [role\_name](#input\_role\_name) | Name of IAM role to use for Lambda Function | `string` | `null` | no |
475-
| <a name="input_role_path"></a> [role\_path](#input\_role\_path) | Path of IAM role to use for Lambda Function | `string` | `null` | no |
476-
| <a name="input_role_permissions_boundary"></a> [role\_permissions\_boundary](#input\_role\_permissions\_boundary) | The ARN of the policy that is used to set the permissions boundary for the IAM role used by Lambda Function | `string` | `null` | no |
474+
| <a name="input_role_name"></a> [role\_name](#input\_role\_name) | Name of IAM role to use for EventBridge | `string` | `null` | no |
475+
| <a name="input_role_path"></a> [role\_path](#input\_role\_path) | Path of IAM role to use for EventBridge | `string` | `null` | no |
476+
| <a name="input_role_permissions_boundary"></a> [role\_permissions\_boundary](#input\_role\_permissions\_boundary) | The ARN of the policy that is used to set the permissions boundary for the IAM role used by EventBridge | `string` | `null` | no |
477477
| <a name="input_role_tags"></a> [role\_tags](#input\_role\_tags) | A map of tags to assign to IAM role | `map(string)` | `{}` | no |
478478
| <a name="input_rules"></a> [rules](#input\_rules) | A map of objects with EventBridge Rule definitions. | `map(any)` | `{}` | no |
479479
| <a name="input_schemas_discoverer_description"></a> [schemas\_discoverer\_description](#input\_schemas\_discoverer\_description) | Default schemas discoverer description | `string` | `"Auto schemas discoverer event"` | no |

variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,19 +137,19 @@ variable "tags" {
137137
######
138138

139139
variable "role_name" {
140-
description = "Name of IAM role to use for Lambda Function"
140+
description = "Name of IAM role to use for EventBridge"
141141
type = string
142142
default = null
143143
}
144144

145145
variable "role_description" {
146-
description = "Description of IAM role to use for Lambda Function"
146+
description = "Description of IAM role to use for EventBridge"
147147
type = string
148148
default = null
149149
}
150150

151151
variable "role_path" {
152-
description = "Path of IAM role to use for Lambda Function"
152+
description = "Path of IAM role to use for EventBridge"
153153
type = string
154154
default = null
155155
}
@@ -161,7 +161,7 @@ variable "role_force_detach_policies" {
161161
}
162162

163163
variable "role_permissions_boundary" {
164-
description = "The ARN of the policy that is used to set the permissions boundary for the IAM role used by Lambda Function"
164+
description = "The ARN of the policy that is used to set the permissions boundary for the IAM role used by EventBridge"
165165
type = string
166166
default = null
167167
}

0 commit comments

Comments
 (0)