You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
key group defaults to an empty list and this does not allow conditional use
variable "trusted_key_groups" {
type = list(string)
default = []
description = "A list of key group IDs that CloudFront can use to validate signed URLs or signed cookies."
}
Expected Behavior
should be allowed to pass an empty sting and default to null value
variable "trusted_key_groups" {
type = list(string)
default = null
description = "A list of key group IDs that CloudFront can use to validate signed URLs or signed cookies."
}
The text was updated successfully, but these errors were encountered:
Describe the Bug
key group defaults to an empty list and this does not allow conditional use
variable "trusted_key_groups" {
type = list(string)
default = []
description = "A list of key group IDs that CloudFront can use to validate signed URLs or signed cookies."
}
Expected Behavior
should be allowed to pass an empty sting and default to null value
Steps to Reproduce
{ zone_id = "XXXXXXXXXXx"
domain_name = "domain-name.com"
bucket = "XXXXXX.s3.amazonaws.com"
trusted_key_groups = ""
comment = "CloudFront"
},
Screenshots
No response
Environment
No response
Additional Context
to fix please update variables
variable "trusted_key_groups" {
type = list(string)
default = null
description = "A list of key group IDs that CloudFront can use to validate signed URLs or signed cookies."
}
The text was updated successfully, but these errors were encountered: