Skip to content

Commit

Permalink
fix: remove unsupported optional on list (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamMacP authored Mar 14, 2024
1 parent 0a0171c commit 84c6974
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/aws/permission_sets/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ variable "identity_store_arn" {

variable "inline_policies" {
description = "The inline policy to attach to the permission set."
type = optional(list(object({
type = list(object({
sid = optional(string)
actions = list(string)
resources = list(string)
})))
}))
default = []
}

variable "managed_policies" {
description = "The inline policy to attach to the permission set."
type = optional(list(string))
type = list(string)
default = []
}

0 comments on commit 84c6974

Please sign in to comment.