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
module"google_logging_folder_exclusion" {
source="./modules/google-beta/r/google_logging_folder_exclusion"# description - (optional) is a type of stringdescription=null# disabled - (optional) is a type of booldisabled=null# filter - (required) is a type of stringfilter=null# folder - (required) is a type of stringfolder=null# name - (required) is a type of stringname=null
}
variable"description" {
description="(optional) - A human-readable description."type=stringdefault=null
}
variable"disabled" {
description="(optional) - Whether this exclusion rule should be disabled or not. This defaults to false."type=booldefault=null
}
variable"filter" {
description="(required) - The filter to apply when excluding logs. Only log entries that match the filter are excluded."type=string
}
variable"folder" {
description="(required)"type=string
}
variable"name" {
description="(required) - The name of the logging exclusion."type=string
}
resource"google_logging_folder_exclusion""this" {
# description - (optional) is a type of stringdescription=var.description# disabled - (optional) is a type of booldisabled=var.disabled# filter - (required) is a type of stringfilter=var.filter# folder - (required) is a type of stringfolder=var.folder# name - (required) is a type of stringname=var.name
}