From af6b86cbf5adbf1b9cc0dae84fd490252d81267b Mon Sep 17 00:00:00 2001 From: Loren Gordon Date: Thu, 14 May 2020 07:27:09 -0700 Subject: [PATCH 1/2] Corrects error, "Cannot include a null value in a string template" --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b81c18..23f8c8d 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Note: the implementation `tests/create_securityhub_member` will require you to p | email\_address | Email address associated with the member account. Required input for the SecurityHub member invitation. | `string` | `null` | no | | product\_subscription\_arns | List of product arns to subscribe to. See https://www.terraform.io/docs/providers/aws/r/securityhub_product_subscription.html | `list(string)` | `[]` | no | | profile | (Optional) Used by null\_resource to establish botocore session | `string` | `""` | no | -| region | (Optional) Used by null\_resource to establish botocore client | `string` | `null` | no | +| region | (Optional) Used by null\_resource to establish botocore client | `string` | `""` | no | | role\_arn | (Optional) Used by null\_resource to assume a role in the accepter account | `string` | `""` | no | | standard\_subscription\_arns | List of standard arns to subscribe to. See https://www.terraform.io/docs/providers/aws/r/securityhub_standards_subscription.html | `list(string)` | `[]` | no | diff --git a/variables.tf b/variables.tf index 84fca4d..ea11fb9 100644 --- a/variables.tf +++ b/variables.tf @@ -43,5 +43,5 @@ variable "role_arn" { variable "region" { description = "(Optional) Used by null_resource to establish botocore client" type = string - default = null + default = "" } From a769343de9d4239fa68e00f4a536aabaeb986e51 Mon Sep 17 00:00:00 2001 From: Loren Gordon Date: Thu, 14 May 2020 07:27:13 -0700 Subject: [PATCH 2/2] Bumps version to 0.0.3 --- .bumpversion.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 60e4538..b587c5e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.2 +current_version = 0.0.3 commit = True message = Bumps version to {new_version} tag = False