cloud-foundation-fabric/tests/modules/organization/fixture/test.logging-sinks.tfvars

30 lines
770 B
Plaintext
Raw Normal View History

logging_sinks = {
warning = {
2022-11-12 10:24:41 -08:00
destination = "mybucket"
type = "storage"
filter = "severity=WARNING"
}
info = {
2022-11-12 10:24:41 -08:00
destination = "projects/myproject/datasets/mydataset"
type = "bigquery"
filter = "severity=INFO"
disabled = true
}
notice = {
2022-11-12 10:24:41 -08:00
destination = "projects/myproject/topics/mytopic"
type = "pubsub"
filter = "severity=NOTICE"
include_children = false
}
debug = {
2022-11-12 10:24:41 -08:00
destination = "projects/myproject/locations/global/buckets/mybucket"
type = "logging"
filter = "severity=DEBUG"
include_children = false
exclusions = {
no-compute = "logName:compute"
no-container = "logName:container"
}
}
}