Skip to content

Commit

Permalink
fix type of object
Browse files Browse the repository at this point in the history
  • Loading branch information
brunodasilvalenga committed Apr 21, 2022
1 parent 1b23d25 commit c0130a6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion _variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ variable "iam_database_authentication_enabled" {
}

variable "allow_security_group_ids" {
type = list(string)
type = list(object({
security_group_id = string
description = string
name = string
}))
description = "List of Security Group IDs to allow connection to this DB"
default = []
}
Expand Down

0 comments on commit c0130a6

Please sign in to comment.