Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion fast/stages-aw/0-bootstrap/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ variable "locations" {
# for additional logging filter examples

variable "log_sinks" {
description = "Org-level log sinks, in name => {type, filter} format."
description = "Org-level log sinks, in name => {type, filter} format. Valid types: 'logging' (routes to Cloud Logging bucket with 365-day default retention), 'pubsub' (routes to Pub/Sub topic with 7-day default retention; requires an active consumer to avoid log loss), 'storage' (routes to GCS bucket), 'bigquery' (routes to BigQuery dataset)."
type = map(object({
filter = string
type = string
Expand Down Expand Up @@ -249,6 +249,12 @@ variable "logging_kms_key" {
default = null
}

variable "logging_bucket_retention" {
description = "Retention period (in days) for the Cloud Logging buckets created for organization log exports."
type = number
default = 365
}

variable "org_policies_config" {
description = "Organization policies customization."
type = object({
Expand Down