Project Exclusion Args
data class ProjectExclusionArgs(val description: Output<String>? = null, val disabled: Output<Boolean>? = null, val filter: Output<String>? = null, val name: Output<String>? = null, val project: Output<String>? = null) : ConvertibleToJava<ProjectExclusionArgs>
Manages a project-level logging exclusion. For more information see:
How-to Guides
You can specify exclusions for log sinks created by the provider by using the exclusions field of
gcp.logging.ProjectSink
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const my_exclusion = new gcp.logging.ProjectExclusion("my-exclusion", {
name: "my-instance-debug-exclusion",
description: "Exclude GCE instance debug logs",
filter: "resource.type = gce_instance AND severity <= DEBUG",
});
Content copied to clipboard
import pulumi
import pulumi_gcp as gcp
my_exclusion = gcp.logging.ProjectExclusion("my-exclusion",
name="my-instance-debug-exclusion",
description="Exclude GCE instance debug logs",
filter="resource.type = gce_instance AND severity <= DEBUG")
Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var my_exclusion = new Gcp.Logging.ProjectExclusion("my-exclusion", new()
{
Name = "my-instance-debug-exclusion",
Description = "Exclude GCE instance debug logs",
Filter = "resource.type = gce_instance AND severity <= DEBUG",
});
});
Content copied to clipboard
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/logging"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := logging.NewProjectExclusion(ctx, "my-exclusion", &logging.ProjectExclusionArgs{
Name: pulumi.String("my-instance-debug-exclusion"),
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
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.logging.ProjectExclusion;
import com.pulumi.gcp.logging.ProjectExclusionArgs;
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_exclusion = new ProjectExclusion("my-exclusion", ProjectExclusionArgs.builder()
.name("my-instance-debug-exclusion")
.description("Exclude GCE instance debug logs")
.filter("resource.type = gce_instance AND severity <= DEBUG")
.build());
}
}
Content copied to clipboard
resources:
my-exclusion:
type: gcp:logging:ProjectExclusion
properties:
name: my-instance-debug-exclusion
description: Exclude GCE instance debug logs
filter: resource.type = gce_instance AND severity <= DEBUG
Content copied to clipboard
Import
Project-level logging exclusions can be imported using their URI, e.g.
projects/{{project_id}}/exclusions/{{name}}
When using thepulumi import
command, project-level logging exclusions can be imported using one of the formats above. For example:
$ pulumi import gcp:logging/projectExclusion:ProjectExclusion default projects/{{project_id}}/exclusions/{{name}}
Content copied to clipboard
Constructors
Properties
Link copied to clipboard
A human-readable description.
Link copied to clipboard
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.