FolderExclusion

class FolderExclusion : KotlinCustomResource

Manages a folder-level logging exclusion. For more information see:

You can specify exclusions for log sinks created by the provider by using the exclusions field of gcp.logging.FolderSink

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.organizations.Folder;
import com.pulumi.gcp.organizations.FolderArgs;
import com.pulumi.gcp.logging.FolderExclusion;
import com.pulumi.gcp.logging.FolderExclusionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var my_folder = new Folder("my-folder", FolderArgs.builder()
.displayName("My folder")
.parent("organizations/123456")
.build());
var my_exclusion = new FolderExclusion("my-exclusion", FolderExclusionArgs.builder()
.folder(my_folder.name())
.description("Exclude GCE instance debug logs")
.filter("resource.type = gce_instance AND severity <= DEBUG")
.build());
}
}

Import

Folder-level logging exclusions can be imported using their URI, e.g.

$ pulumi import gcp:logging/folderExclusion:FolderExclusion my_exclusion folders/my-folder/exclusions/my-exclusion

Properties

Link copied to clipboard
val description: Output<String>?

A human-readable description.

Link copied to clipboard
val disabled: Output<Boolean>?

Whether this exclusion rule should be disabled or not. This defaults to false.

Link copied to clipboard
val filter: Output<String>

The filter to apply when excluding logs. Only log entries that match the filter are excluded. See Advanced Log Filters for information on how to write a filter.

Link copied to clipboard
val folder: Output<String>

The folder to be exported to the sink. Note that either FOLDER_ID or "folders/FOLDER_ID" is accepted.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name of the logging exclusion.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val urn: Output<String>