1. Packages
  2. MongoDB Atlas
  3. API Docs
  4. Auditing
MongoDB Atlas v3.14.3 published on Monday, Apr 1, 2024 by Pulumi

mongodbatlas.Auditing

Explore with Pulumi AI

mongodbatlas logo
MongoDB Atlas v3.14.3 published on Monday, Apr 1, 2024 by Pulumi

    mongodbatlas.Auditing provides an Auditing resource. This allows auditing to be created.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as mongodbatlas from "@pulumi/mongodbatlas";
    
    const test = new mongodbatlas.Auditing("test", {
        auditAuthorizationSuccess: false,
        auditFilter: "{ 'atype': 'authenticate', 'param': {   'user': 'auditAdmin',   'db': 'admin',   'mechanism': 'SCRAM-SHA-1' }}",
        enabled: true,
        projectId: "<project-id>",
    });
    
    import pulumi
    import pulumi_mongodbatlas as mongodbatlas
    
    test = mongodbatlas.Auditing("test",
        audit_authorization_success=False,
        audit_filter="{ 'atype': 'authenticate', 'param': {   'user': 'auditAdmin',   'db': 'admin',   'mechanism': 'SCRAM-SHA-1' }}",
        enabled=True,
        project_id="<project-id>")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-mongodbatlas/sdk/v3/go/mongodbatlas"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := mongodbatlas.NewAuditing(ctx, "test", &mongodbatlas.AuditingArgs{
    			AuditAuthorizationSuccess: pulumi.Bool(false),
    			AuditFilter:               pulumi.String("{ 'atype': 'authenticate', 'param': {   'user': 'auditAdmin',   'db': 'admin',   'mechanism': 'SCRAM-SHA-1' }}"),
    			Enabled:                   pulumi.Bool(true),
    			ProjectId:                 pulumi.String("<project-id>"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Mongodbatlas = Pulumi.Mongodbatlas;
    
    return await Deployment.RunAsync(() => 
    {
        var test = new Mongodbatlas.Auditing("test", new()
        {
            AuditAuthorizationSuccess = false,
            AuditFilter = "{ 'atype': 'authenticate', 'param': {   'user': 'auditAdmin',   'db': 'admin',   'mechanism': 'SCRAM-SHA-1' }}",
            Enabled = true,
            ProjectId = "<project-id>",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.mongodbatlas.Auditing;
    import com.pulumi.mongodbatlas.AuditingArgs;
    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 test = new Auditing("test", AuditingArgs.builder()        
                .auditAuthorizationSuccess(false)
                .auditFilter("{ 'atype': 'authenticate', 'param': {   'user': 'auditAdmin',   'db': 'admin',   'mechanism': 'SCRAM-SHA-1' }}")
                .enabled(true)
                .projectId("<project-id>")
                .build());
    
        }
    }
    
    resources:
      test:
        type: mongodbatlas:Auditing
        properties:
          auditAuthorizationSuccess: false
          auditFilter: '{ ''atype'': ''authenticate'', ''param'': {   ''user'': ''auditAdmin'',   ''db'': ''admin'',   ''mechanism'': ''SCRAM-SHA-1'' }}'
          enabled: true
          projectId: <project-id>
    

    Create Auditing Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Auditing(name: string, args: AuditingArgs, opts?: CustomResourceOptions);
    @overload
    def Auditing(resource_name: str,
                 args: AuditingArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Auditing(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 project_id: Optional[str] = None,
                 audit_authorization_success: Optional[bool] = None,
                 audit_filter: Optional[str] = None,
                 enabled: Optional[bool] = None)
    func NewAuditing(ctx *Context, name string, args AuditingArgs, opts ...ResourceOption) (*Auditing, error)
    public Auditing(string name, AuditingArgs args, CustomResourceOptions? opts = null)
    public Auditing(String name, AuditingArgs args)
    public Auditing(String name, AuditingArgs args, CustomResourceOptions options)
    
    type: mongodbatlas:Auditing
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AuditingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AuditingArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AuditingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AuditingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AuditingArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var auditingResource = new Mongodbatlas.Auditing("auditingResource", new()
    {
        ProjectId = "string",
        AuditAuthorizationSuccess = false,
        AuditFilter = "string",
        Enabled = false,
    });
    
    example, err := mongodbatlas.NewAuditing(ctx, "auditingResource", &mongodbatlas.AuditingArgs{
    	ProjectId:                 pulumi.String("string"),
    	AuditAuthorizationSuccess: pulumi.Bool(false),
    	AuditFilter:               pulumi.String("string"),
    	Enabled:                   pulumi.Bool(false),
    })
    
    var auditingResource = new Auditing("auditingResource", AuditingArgs.builder()        
        .projectId("string")
        .auditAuthorizationSuccess(false)
        .auditFilter("string")
        .enabled(false)
        .build());
    
    auditing_resource = mongodbatlas.Auditing("auditingResource",
        project_id="string",
        audit_authorization_success=False,
        audit_filter="string",
        enabled=False)
    
    const auditingResource = new mongodbatlas.Auditing("auditingResource", {
        projectId: "string",
        auditAuthorizationSuccess: false,
        auditFilter: "string",
        enabled: false,
    });
    
    type: mongodbatlas:Auditing
    properties:
        auditAuthorizationSuccess: false
        auditFilter: string
        enabled: false
        projectId: string
    

    Auditing Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Auditing resource accepts the following input properties:

    ProjectId string
    The unique ID for the project to configure auditing. Note: When changing this value to a different project_id it will delete the current audit settings for the original project that was assigned to.
    AuditAuthorizationSuccess bool
    Indicates whether the auditing system captures successful authentication attempts for audit filters using the "atype" : "authCheck" auditing event. For more information, see auditAuthorizationSuccess. Warning! Enabling Audit authorization successes can severely impact cluster performance. Enable this option with caution.
    AuditFilter string
    JSON-formatted audit filter. For complete documentation on custom auditing filters, see Configure Audit Filters.
    Enabled bool

    Denotes whether or not the project associated with the {project_id} has database auditing enabled. Defaults to false.

    NOTE: Auditing created by API Keys must belong to an existing organization.

    ProjectId string
    The unique ID for the project to configure auditing. Note: When changing this value to a different project_id it will delete the current audit settings for the original project that was assigned to.
    AuditAuthorizationSuccess bool
    Indicates whether the auditing system captures successful authentication attempts for audit filters using the "atype" : "authCheck" auditing event. For more information, see auditAuthorizationSuccess. Warning! Enabling Audit authorization successes can severely impact cluster performance. Enable this option with caution.
    AuditFilter string
    JSON-formatted audit filter. For complete documentation on custom auditing filters, see Configure Audit Filters.
    Enabled bool

    Denotes whether or not the project associated with the {project_id} has database auditing enabled. Defaults to false.

    NOTE: Auditing created by API Keys must belong to an existing organization.

    projectId String
    The unique ID for the project to configure auditing. Note: When changing this value to a different project_id it will delete the current audit settings for the original project that was assigned to.
    auditAuthorizationSuccess Boolean
    Indicates whether the auditing system captures successful authentication attempts for audit filters using the "atype" : "authCheck" auditing event. For more information, see auditAuthorizationSuccess. Warning! Enabling Audit authorization successes can severely impact cluster performance. Enable this option with caution.
    auditFilter String
    JSON-formatted audit filter. For complete documentation on custom auditing filters, see Configure Audit Filters.
    enabled Boolean

    Denotes whether or not the project associated with the {project_id} has database auditing enabled. Defaults to false.

    NOTE: Auditing created by API Keys must belong to an existing organization.

    projectId string
    The unique ID for the project to configure auditing. Note: When changing this value to a different project_id it will delete the current audit settings for the original project that was assigned to.
    auditAuthorizationSuccess boolean
    Indicates whether the auditing system captures successful authentication attempts for audit filters using the "atype" : "authCheck" auditing event. For more information, see auditAuthorizationSuccess. Warning! Enabling Audit authorization successes can severely impact cluster performance. Enable this option with caution.
    auditFilter string
    JSON-formatted audit filter. For complete documentation on custom auditing filters, see Configure Audit Filters.
    enabled boolean

    Denotes whether or not the project associated with the {project_id} has database auditing enabled. Defaults to false.

    NOTE: Auditing created by API Keys must belong to an existing organization.

    project_id str
    The unique ID for the project to configure auditing. Note: When changing this value to a different project_id it will delete the current audit settings for the original project that was assigned to.
    audit_authorization_success bool
    Indicates whether the auditing system captures successful authentication attempts for audit filters using the "atype" : "authCheck" auditing event. For more information, see auditAuthorizationSuccess. Warning! Enabling Audit authorization successes can severely impact cluster performance. Enable this option with caution.
    audit_filter str
    JSON-formatted audit filter. For complete documentation on custom auditing filters, see Configure Audit Filters.
    enabled bool

    Denotes whether or not the project associated with the {project_id} has database auditing enabled. Defaults to false.

    NOTE: Auditing created by API Keys must belong to an existing organization.

    projectId String
    The unique ID for the project to configure auditing. Note: When changing this value to a different project_id it will delete the current audit settings for the original project that was assigned to.
    auditAuthorizationSuccess Boolean
    Indicates whether the auditing system captures successful authentication attempts for audit filters using the "atype" : "authCheck" auditing event. For more information, see auditAuthorizationSuccess. Warning! Enabling Audit authorization successes can severely impact cluster performance. Enable this option with caution.
    auditFilter String
    JSON-formatted audit filter. For complete documentation on custom auditing filters, see Configure Audit Filters.
    enabled Boolean

    Denotes whether or not the project associated with the {project_id} has database auditing enabled. Defaults to false.

    NOTE: Auditing created by API Keys must belong to an existing organization.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Auditing resource produces the following output properties:

    ConfigurationType string
    Denotes the configuration method for the audit filter. Possible values are:

    • NONE - auditing not configured for the project.
    • FILTER_BUILDER - auditing configured via Atlas UI filter builder.
    • FILTER_JSON - auditing configured via Atlas custom filter or API.
    Id string
    The provider-assigned unique ID for this managed resource.
    ConfigurationType string
    Denotes the configuration method for the audit filter. Possible values are:

    • NONE - auditing not configured for the project.
    • FILTER_BUILDER - auditing configured via Atlas UI filter builder.
    • FILTER_JSON - auditing configured via Atlas custom filter or API.
    Id string
    The provider-assigned unique ID for this managed resource.
    configurationType String
    Denotes the configuration method for the audit filter. Possible values are:

    • NONE - auditing not configured for the project.
    • FILTER_BUILDER - auditing configured via Atlas UI filter builder.
    • FILTER_JSON - auditing configured via Atlas custom filter or API.
    id String
    The provider-assigned unique ID for this managed resource.
    configurationType string
    Denotes the configuration method for the audit filter. Possible values are:

    • NONE - auditing not configured for the project.
    • FILTER_BUILDER - auditing configured via Atlas UI filter builder.
    • FILTER_JSON - auditing configured via Atlas custom filter or API.
    id string
    The provider-assigned unique ID for this managed resource.
    configuration_type str
    Denotes the configuration method for the audit filter. Possible values are:

    • NONE - auditing not configured for the project.
    • FILTER_BUILDER - auditing configured via Atlas UI filter builder.
    • FILTER_JSON - auditing configured via Atlas custom filter or API.
    id str
    The provider-assigned unique ID for this managed resource.
    configurationType String
    Denotes the configuration method for the audit filter. Possible values are:

    • NONE - auditing not configured for the project.
    • FILTER_BUILDER - auditing configured via Atlas UI filter builder.
    • FILTER_JSON - auditing configured via Atlas custom filter or API.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Auditing Resource

    Get an existing Auditing resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AuditingState, opts?: CustomResourceOptions): Auditing
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            audit_authorization_success: Optional[bool] = None,
            audit_filter: Optional[str] = None,
            configuration_type: Optional[str] = None,
            enabled: Optional[bool] = None,
            project_id: Optional[str] = None) -> Auditing
    func GetAuditing(ctx *Context, name string, id IDInput, state *AuditingState, opts ...ResourceOption) (*Auditing, error)
    public static Auditing Get(string name, Input<string> id, AuditingState? state, CustomResourceOptions? opts = null)
    public static Auditing get(String name, Output<String> id, AuditingState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AuditAuthorizationSuccess bool
    Indicates whether the auditing system captures successful authentication attempts for audit filters using the "atype" : "authCheck" auditing event. For more information, see auditAuthorizationSuccess. Warning! Enabling Audit authorization successes can severely impact cluster performance. Enable this option with caution.
    AuditFilter string
    JSON-formatted audit filter. For complete documentation on custom auditing filters, see Configure Audit Filters.
    ConfigurationType string
    Denotes the configuration method for the audit filter. Possible values are:

    • NONE - auditing not configured for the project.
    • FILTER_BUILDER - auditing configured via Atlas UI filter builder.
    • FILTER_JSON - auditing configured via Atlas custom filter or API.
    Enabled bool

    Denotes whether or not the project associated with the {project_id} has database auditing enabled. Defaults to false.

    NOTE: Auditing created by API Keys must belong to an existing organization.

    ProjectId string
    The unique ID for the project to configure auditing. Note: When changing this value to a different project_id it will delete the current audit settings for the original project that was assigned to.
    AuditAuthorizationSuccess bool
    Indicates whether the auditing system captures successful authentication attempts for audit filters using the "atype" : "authCheck" auditing event. For more information, see auditAuthorizationSuccess. Warning! Enabling Audit authorization successes can severely impact cluster performance. Enable this option with caution.
    AuditFilter string
    JSON-formatted audit filter. For complete documentation on custom auditing filters, see Configure Audit Filters.
    ConfigurationType string
    Denotes the configuration method for the audit filter. Possible values are:

    • NONE - auditing not configured for the project.
    • FILTER_BUILDER - auditing configured via Atlas UI filter builder.
    • FILTER_JSON - auditing configured via Atlas custom filter or API.
    Enabled bool

    Denotes whether or not the project associated with the {project_id} has database auditing enabled. Defaults to false.

    NOTE: Auditing created by API Keys must belong to an existing organization.

    ProjectId string
    The unique ID for the project to configure auditing. Note: When changing this value to a different project_id it will delete the current audit settings for the original project that was assigned to.
    auditAuthorizationSuccess Boolean
    Indicates whether the auditing system captures successful authentication attempts for audit filters using the "atype" : "authCheck" auditing event. For more information, see auditAuthorizationSuccess. Warning! Enabling Audit authorization successes can severely impact cluster performance. Enable this option with caution.
    auditFilter String
    JSON-formatted audit filter. For complete documentation on custom auditing filters, see Configure Audit Filters.
    configurationType String
    Denotes the configuration method for the audit filter. Possible values are:

    • NONE - auditing not configured for the project.
    • FILTER_BUILDER - auditing configured via Atlas UI filter builder.
    • FILTER_JSON - auditing configured via Atlas custom filter or API.
    enabled Boolean

    Denotes whether or not the project associated with the {project_id} has database auditing enabled. Defaults to false.

    NOTE: Auditing created by API Keys must belong to an existing organization.

    projectId String
    The unique ID for the project to configure auditing. Note: When changing this value to a different project_id it will delete the current audit settings for the original project that was assigned to.
    auditAuthorizationSuccess boolean
    Indicates whether the auditing system captures successful authentication attempts for audit filters using the "atype" : "authCheck" auditing event. For more information, see auditAuthorizationSuccess. Warning! Enabling Audit authorization successes can severely impact cluster performance. Enable this option with caution.
    auditFilter string
    JSON-formatted audit filter. For complete documentation on custom auditing filters, see Configure Audit Filters.
    configurationType string
    Denotes the configuration method for the audit filter. Possible values are:

    • NONE - auditing not configured for the project.
    • FILTER_BUILDER - auditing configured via Atlas UI filter builder.
    • FILTER_JSON - auditing configured via Atlas custom filter or API.
    enabled boolean

    Denotes whether or not the project associated with the {project_id} has database auditing enabled. Defaults to false.

    NOTE: Auditing created by API Keys must belong to an existing organization.

    projectId string
    The unique ID for the project to configure auditing. Note: When changing this value to a different project_id it will delete the current audit settings for the original project that was assigned to.
    audit_authorization_success bool
    Indicates whether the auditing system captures successful authentication attempts for audit filters using the "atype" : "authCheck" auditing event. For more information, see auditAuthorizationSuccess. Warning! Enabling Audit authorization successes can severely impact cluster performance. Enable this option with caution.
    audit_filter str
    JSON-formatted audit filter. For complete documentation on custom auditing filters, see Configure Audit Filters.
    configuration_type str
    Denotes the configuration method for the audit filter. Possible values are:

    • NONE - auditing not configured for the project.
    • FILTER_BUILDER - auditing configured via Atlas UI filter builder.
    • FILTER_JSON - auditing configured via Atlas custom filter or API.
    enabled bool

    Denotes whether or not the project associated with the {project_id} has database auditing enabled. Defaults to false.

    NOTE: Auditing created by API Keys must belong to an existing organization.

    project_id str
    The unique ID for the project to configure auditing. Note: When changing this value to a different project_id it will delete the current audit settings for the original project that was assigned to.
    auditAuthorizationSuccess Boolean
    Indicates whether the auditing system captures successful authentication attempts for audit filters using the "atype" : "authCheck" auditing event. For more information, see auditAuthorizationSuccess. Warning! Enabling Audit authorization successes can severely impact cluster performance. Enable this option with caution.
    auditFilter String
    JSON-formatted audit filter. For complete documentation on custom auditing filters, see Configure Audit Filters.
    configurationType String
    Denotes the configuration method for the audit filter. Possible values are:

    • NONE - auditing not configured for the project.
    • FILTER_BUILDER - auditing configured via Atlas UI filter builder.
    • FILTER_JSON - auditing configured via Atlas custom filter or API.
    enabled Boolean

    Denotes whether or not the project associated with the {project_id} has database auditing enabled. Defaults to false.

    NOTE: Auditing created by API Keys must belong to an existing organization.

    projectId String
    The unique ID for the project to configure auditing. Note: When changing this value to a different project_id it will delete the current audit settings for the original project that was assigned to.

    Import

    Auditing must be imported using auditing ID, e.g.

    $ pulumi import mongodbatlas:index/auditing:Auditing my_auditing 5d09d6a59ccf6445652a444a
    

    For more information see: MongoDB Atlas API Reference.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    MongoDB Atlas pulumi/pulumi-mongodbatlas
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the mongodbatlas Terraform Provider.
    mongodbatlas logo
    MongoDB Atlas v3.14.3 published on Monday, Apr 1, 2024 by Pulumi