Project Exclusion
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
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()
.description("Exclude GCE instance debug logs")
.filter("resource.type = gce_instance AND severity <= DEBUG")
.build());
}
}Content copied to clipboard
Import
Project-level logging exclusions can be imported using their URI, e.g. * projects/{{project_id}}/exclusions/{{name}} In Terraform v1.5.0 and later, use an import block to import project-level logging exclusions using one of the formats above. For exampletf import { id = "projects/{{project_id}}/exclusions/{{name}}" to = google_logging_project_exclusion.default }
$ pulumi import gcp:logging/projectExclusion:ProjectExclusion When using the [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import), project-level logging exclusions can be imported using one of the formats above. For exampleContent copied to clipboard
$ pulumi import gcp:logging/projectExclusion:ProjectExclusion default projects/{{project_id}}/exclusions/{{name}}Content copied to clipboard
Properties
Link copied to clipboard
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.