From 5c721e8c7576798ec7eb488b94259732b213eba4 Mon Sep 17 00:00:00 2001 From: Nat Welch Date: Mon, 21 Jun 2021 14:22:47 +0000 Subject: [PATCH] update docs --- README.md | 4 ++-- variables.tf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b718f89..975b2bb 100644 --- a/README.md +++ b/README.md @@ -245,7 +245,7 @@ module "eventbridge" { | Name | Version | |------|---------| -| [aws](#provider\_aws) | >= 3.40 | +| [aws](#provider\_aws) | 3.46.0 | ## Modules @@ -320,7 +320,7 @@ No modules. | [create\_archives](#input\_create\_archives) | Controls whether EventBridge Archive resources should be created | `bool` | `false` | no | | [create\_bus](#input\_create\_bus) | Controls whether EventBridge Bus resource should be created | `bool` | `true` | no | | [create\_permissions](#input\_create\_permissions) | Controls whether EventBridge Permission resources should be created | `bool` | `true` | no | -| [create\_role](#input\_create\_role) | Controls whether IAM role for Lambda Function should be created | `bool` | `true` | no | +| [create\_role](#input\_create\_role) | Controls whether IAM roles should be created | `bool` | `true` | no | | [create\_rules](#input\_create\_rules) | Controls whether EventBridge Rule resources should be created | `bool` | `true` | no | | [create\_targets](#input\_create\_targets) | Controls whether EventBridge Target resources should be created | `bool` | `true` | no | | [ecs\_target\_arns](#input\_ecs\_target\_arns) | The Amazon Resource Name (ARN) of the AWS ECS Tasks you want to use as EventBridge targets | `list(string)` | `[]` | no | diff --git a/variables.tf b/variables.tf index a71c99b..fdd678a 100644 --- a/variables.tf +++ b/variables.tf @@ -5,7 +5,7 @@ variable "create" { } variable "create_role" { - description = "Controls whether IAM role for Lambda Function should be created" + description = "Controls whether IAM roles should be created" type = bool default = true }