We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d604f8 commit 1fbf1f2Copy full SHA for 1fbf1f2
2 files changed
infrastructure/terraform/modules/eventpub/module_s3bucket_event_cache.tf
@@ -41,7 +41,10 @@ module "s3bucket_event_cache" {
41
var.additional_policies_for_event_cache_bucket
42
)
43
44
- bucket_logging_target = var.eventcache_bucket_logging_target
+ bucket_logging_target = {
45
+ bucket = "${var.eventcache_bucket_logging_target}"
46
+ }
47
+
48
49
public_access = {
50
block_public_acls = true
infrastructure/terraform/modules/eventpub/variables.tf
@@ -155,7 +155,7 @@ variable "event_publishing_anomaly_band_width" {
155
}
156
157
variable "eventcache_bucket_logging_target" {
158
- type = map(string)
159
- description = "Map of S3 bucket access logging target properties"
160
- default = {}
+ type = string
+ description = "S3 bucket access logging target"
+ default = ""
161
0 commit comments