FolderExclusionArgs

data class FolderExclusionArgs(val description: Output<String>? = null, val disabled: Output<Boolean>? = null, val filter: Output<String>? = null, val folder: Output<String>? = null, val name: Output<String>? = null) : ConvertibleToJava<FolderExclusionArgs>

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

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const my_folder = new gcp.organizations.Folder("my-folder", {
displayName: "My folder",
parent: "organizations/123456",
});
const my_exclusion = new gcp.logging.FolderExclusion("my-exclusion", {
name: "my-instance-debug-exclusion",
folder: my_folder.name,
description: "Exclude GCE instance debug logs",
filter: "resource.type = gce_instance AND severity <= DEBUG",
});
import pulumi
import pulumi_gcp as gcp
my_folder = gcp.organizations.Folder("my-folder",
display_name="My folder",
parent="organizations/123456")
my_exclusion = gcp.logging.FolderExclusion("my-exclusion",
name="my-instance-debug-exclusion",
folder=my_folder.name,
description="Exclude GCE instance debug logs",
filter="resource.type = gce_instance AND severity <= DEBUG")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var my_folder = new Gcp.Organizations.Folder("my-folder", new()
{
DisplayName = "My folder",
Parent = "organizations/123456",
});
var my_exclusion = new Gcp.Logging.FolderExclusion("my-exclusion", new()
{
Name = "my-instance-debug-exclusion",
Folder = my_folder.Name,
Description = "Exclude GCE instance debug logs",
Filter = "resource.type = gce_instance AND severity <= DEBUG",
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/logging"
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := organizations.NewFolder(ctx, "my-folder", &organizations.FolderArgs{
DisplayName: pulumi.String("My folder"),
Parent: pulumi.String("organizations/123456"),
})
if err != nil {
return err
}
_, err = logging.NewFolderExclusion(ctx, "my-exclusion", &logging.FolderExclusionArgs{
Name: pulumi.String("my-instance-debug-exclusion"),
Folder: my_folder.Name,
Description: pulumi.String("Exclude GCE instance debug logs"),
Filter: pulumi.String("resource.type = gce_instance AND severity <= DEBUG"),
})
if err != nil {
return err
}
return nil
})
}
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()
.name("my-instance-debug-exclusion")
.folder(my_folder.name())
.description("Exclude GCE instance debug logs")
.filter("resource.type = gce_instance AND severity <= DEBUG")
.build());
}
}
resources:
my-exclusion:
type: gcp:logging:FolderExclusion
properties:
name: my-instance-debug-exclusion
folder: ${["my-folder"].name}
description: Exclude GCE instance debug logs
filter: resource.type = gce_instance AND severity <= DEBUG
my-folder:
type: gcp:organizations:Folder
properties:
displayName: My folder
parent: organizations/123456

Import

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

  • folders/{{folder}}/exclusions/{{name}} When using the pulumi import command, folder-level logging exclusions can be imported using one of the formats above. For example:

$ pulumi import gcp:logging/folderExclusion:FolderExclusion default folders/{{folder}}/exclusions/{{name}}

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, disabled: Output<Boolean>? = null, filter: Output<String>? = null, folder: Output<String>? = null, name: Output<String>? = null)

Properties

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

A human-readable description.

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

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

Link copied to clipboard
val filter: Output<String>? = null

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>? = null

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

Link copied to clipboard
val name: Output<String>? = null

The name of the logging exclusion.

Functions

Link copied to clipboard
open override fun toJava(): FolderExclusionArgs