Skip to content

Commit

Permalink
Merge pull request #16 from lorengordon/bad-null-default
Browse files Browse the repository at this point in the history
  • Loading branch information
lorengordon authored May 14, 2020
2 parents 4906483 + a769343 commit 637d80e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ variable "role_arn" {
variable "region" {
description = "(Optional) Used by null_resource to establish botocore client"
type = string
default = null
default = ""
}

0 comments on commit 637d80e

Please sign in to comment.