Skip to content

Commit

Permalink
Fix variable types
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandogoncalves-me committed Dec 3, 2020
1 parent 95c52d2 commit 373bb5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/security_hub/variables.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
variable "member_accounts" {
type = map
type = map(string)
default = {}
description = "A map of accounts that should be added as SecurityHub Member Accounts (format: account_id = email)"
}

variable "product_arns" {
type = list
type = list(string)
default = []
description = "A list of the ARNs of the products you want to import into Security Hub"
}
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ variable "aws_guardduty" {
}

variable "aws_okta_group_ids" {
type = list
type = list(string)
default = []
description = "List of Okta group IDs that should be assigned the AWS SSO Okta app"
}
Expand Down Expand Up @@ -80,6 +80,6 @@ variable "monitor_iam_access" {
}

variable "tags" {
type = map
type = map(string)
description = "Map of tags"
}

0 comments on commit 373bb5c

Please sign in to comment.