1. Packages
  2. Sumo Logic
  3. API Docs
  4. CseInventoryEntityGroupConfiguration
Sumo Logic v0.21.0 published on Thursday, Apr 11, 2024 by Pulumi

sumologic.CseInventoryEntityGroupConfiguration

Explore with Pulumi AI

sumologic logo
Sumo Logic v0.21.0 published on Thursday, Apr 11, 2024 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sumologic from "@pulumi/sumologic";
    
    const inventoryEntityGroupConfiguration = new sumologic.CseInventoryEntityGroupConfiguration("inventoryEntityGroupConfiguration", {
        criticality: "HIGH",
        description: "Inventory entity group description",
        inventoryKey: "groups",
        inventorySource: "Active Directory",
        inventoryType: "username",
        inventoryValue: "http_servers",
        suppressed: false,
        tags: ["tag"],
    });
    
    import pulumi
    import pulumi_sumologic as sumologic
    
    inventory_entity_group_configuration = sumologic.CseInventoryEntityGroupConfiguration("inventoryEntityGroupConfiguration",
        criticality="HIGH",
        description="Inventory entity group description",
        inventory_key="groups",
        inventory_source="Active Directory",
        inventory_type="username",
        inventory_value="http_servers",
        suppressed=False,
        tags=["tag"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-sumologic/sdk/go/sumologic"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sumologic.NewCseInventoryEntityGroupConfiguration(ctx, "inventoryEntityGroupConfiguration", &sumologic.CseInventoryEntityGroupConfigurationArgs{
    			Criticality:     pulumi.String("HIGH"),
    			Description:     pulumi.String("Inventory entity group description"),
    			InventoryKey:    pulumi.String("groups"),
    			InventorySource: pulumi.String("Active Directory"),
    			InventoryType:   pulumi.String("username"),
    			InventoryValue:  pulumi.String("http_servers"),
    			Suppressed:      pulumi.Bool(false),
    			Tags: pulumi.StringArray{
    				pulumi.String("tag"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using SumoLogic = Pulumi.SumoLogic;
    
    return await Deployment.RunAsync(() => 
    {
        var inventoryEntityGroupConfiguration = new SumoLogic.CseInventoryEntityGroupConfiguration("inventoryEntityGroupConfiguration", new()
        {
            Criticality = "HIGH",
            Description = "Inventory entity group description",
            InventoryKey = "groups",
            InventorySource = "Active Directory",
            InventoryType = "username",
            InventoryValue = "http_servers",
            Suppressed = false,
            Tags = new[]
            {
                "tag",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sumologic.CseInventoryEntityGroupConfiguration;
    import com.pulumi.sumologic.CseInventoryEntityGroupConfigurationArgs;
    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 inventoryEntityGroupConfiguration = new CseInventoryEntityGroupConfiguration("inventoryEntityGroupConfiguration", CseInventoryEntityGroupConfigurationArgs.builder()        
                .criticality("HIGH")
                .description("Inventory entity group description")
                .inventoryKey("groups")
                .inventorySource("Active Directory")
                .inventoryType("username")
                .inventoryValue("http_servers")
                .suppressed(false)
                .tags("tag")
                .build());
    
        }
    }
    
    resources:
      inventoryEntityGroupConfiguration:
        type: sumologic:CseInventoryEntityGroupConfiguration
        properties:
          criticality: HIGH
          description: Inventory entity group description
          inventoryKey: groups
          inventorySource: Active Directory
          inventoryType: username
          inventoryValue: http_servers
          suppressed: false
          tags:
            - tag
    

    Create CseInventoryEntityGroupConfiguration Resource

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

    Constructor syntax

    new CseInventoryEntityGroupConfiguration(name: string, args: CseInventoryEntityGroupConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def CseInventoryEntityGroupConfiguration(resource_name: str,
                                             args: CseInventoryEntityGroupConfigurationArgs,
                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def CseInventoryEntityGroupConfiguration(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             inventory_source: Optional[str] = None,
                                             inventory_type: Optional[str] = None,
                                             criticality: Optional[str] = None,
                                             description: Optional[str] = None,
                                             dynamic_tags: Optional[bool] = None,
                                             group: Optional[str] = None,
                                             inventory_key: Optional[str] = None,
                                             inventory_value: Optional[str] = None,
                                             name: Optional[str] = None,
                                             suppressed: Optional[bool] = None,
                                             tag_schema: Optional[str] = None,
                                             tags: Optional[Sequence[str]] = None)
    func NewCseInventoryEntityGroupConfiguration(ctx *Context, name string, args CseInventoryEntityGroupConfigurationArgs, opts ...ResourceOption) (*CseInventoryEntityGroupConfiguration, error)
    public CseInventoryEntityGroupConfiguration(string name, CseInventoryEntityGroupConfigurationArgs args, CustomResourceOptions? opts = null)
    public CseInventoryEntityGroupConfiguration(String name, CseInventoryEntityGroupConfigurationArgs args)
    public CseInventoryEntityGroupConfiguration(String name, CseInventoryEntityGroupConfigurationArgs args, CustomResourceOptions options)
    
    type: sumologic:CseInventoryEntityGroupConfiguration
    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 CseInventoryEntityGroupConfigurationArgs
    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 CseInventoryEntityGroupConfigurationArgs
    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 CseInventoryEntityGroupConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CseInventoryEntityGroupConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CseInventoryEntityGroupConfigurationArgs
    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 cseInventoryEntityGroupConfigurationResource = new SumoLogic.CseInventoryEntityGroupConfiguration("cseInventoryEntityGroupConfigurationResource", new()
    {
        InventorySource = "string",
        InventoryType = "string",
        Criticality = "string",
        Description = "string",
        DynamicTags = false,
        InventoryKey = "string",
        InventoryValue = "string",
        Name = "string",
        Suppressed = false,
        TagSchema = "string",
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := sumologic.NewCseInventoryEntityGroupConfiguration(ctx, "cseInventoryEntityGroupConfigurationResource", &sumologic.CseInventoryEntityGroupConfigurationArgs{
    	InventorySource: pulumi.String("string"),
    	InventoryType:   pulumi.String("string"),
    	Criticality:     pulumi.String("string"),
    	Description:     pulumi.String("string"),
    	DynamicTags:     pulumi.Bool(false),
    	InventoryKey:    pulumi.String("string"),
    	InventoryValue:  pulumi.String("string"),
    	Name:            pulumi.String("string"),
    	Suppressed:      pulumi.Bool(false),
    	TagSchema:       pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var cseInventoryEntityGroupConfigurationResource = new CseInventoryEntityGroupConfiguration("cseInventoryEntityGroupConfigurationResource", CseInventoryEntityGroupConfigurationArgs.builder()        
        .inventorySource("string")
        .inventoryType("string")
        .criticality("string")
        .description("string")
        .dynamicTags(false)
        .inventoryKey("string")
        .inventoryValue("string")
        .name("string")
        .suppressed(false)
        .tagSchema("string")
        .tags("string")
        .build());
    
    cse_inventory_entity_group_configuration_resource = sumologic.CseInventoryEntityGroupConfiguration("cseInventoryEntityGroupConfigurationResource",
        inventory_source="string",
        inventory_type="string",
        criticality="string",
        description="string",
        dynamic_tags=False,
        inventory_key="string",
        inventory_value="string",
        name="string",
        suppressed=False,
        tag_schema="string",
        tags=["string"])
    
    const cseInventoryEntityGroupConfigurationResource = new sumologic.CseInventoryEntityGroupConfiguration("cseInventoryEntityGroupConfigurationResource", {
        inventorySource: "string",
        inventoryType: "string",
        criticality: "string",
        description: "string",
        dynamicTags: false,
        inventoryKey: "string",
        inventoryValue: "string",
        name: "string",
        suppressed: false,
        tagSchema: "string",
        tags: ["string"],
    });
    
    type: sumologic:CseInventoryEntityGroupConfiguration
    properties:
        criticality: string
        description: string
        dynamicTags: false
        inventoryKey: string
        inventorySource: string
        inventoryType: string
        inventoryValue: string
        name: string
        suppressed: false
        tagSchema: string
        tags:
            - string
    

    CseInventoryEntityGroupConfiguration 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 CseInventoryEntityGroupConfiguration resource accepts the following input properties:

    InventorySource string
    The inventory source Examples: "Active Directory", "Okta".
    InventoryType string
    The inventory type Examples: "computer", "username".
    Criticality string
    The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
    Description string
    The entity group configuration description.
    DynamicTags bool
    If dynamic tags are enabled for configuration.
    Group string
    (Deprecated) The entity group configuration inventory group. The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    Deprecated: The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    InventoryKey string
    The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
    InventoryValue string
    The inventory value to match.
    Name string
    The entity group configuration name.
    Suppressed bool
    TagSchema string
    The tag schema to be used for dynamic tags.
    Tags List<string>

    The entity group configuration tags list.

    The following attributes are exported:

    InventorySource string
    The inventory source Examples: "Active Directory", "Okta".
    InventoryType string
    The inventory type Examples: "computer", "username".
    Criticality string
    The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
    Description string
    The entity group configuration description.
    DynamicTags bool
    If dynamic tags are enabled for configuration.
    Group string
    (Deprecated) The entity group configuration inventory group. The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    Deprecated: The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    InventoryKey string
    The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
    InventoryValue string
    The inventory value to match.
    Name string
    The entity group configuration name.
    Suppressed bool
    TagSchema string
    The tag schema to be used for dynamic tags.
    Tags []string

    The entity group configuration tags list.

    The following attributes are exported:

    inventorySource String
    The inventory source Examples: "Active Directory", "Okta".
    inventoryType String
    The inventory type Examples: "computer", "username".
    criticality String
    The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
    description String
    The entity group configuration description.
    dynamicTags Boolean
    If dynamic tags are enabled for configuration.
    group String
    (Deprecated) The entity group configuration inventory group. The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    Deprecated: The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    inventoryKey String
    The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
    inventoryValue String
    The inventory value to match.
    name String
    The entity group configuration name.
    suppressed Boolean
    tagSchema String
    The tag schema to be used for dynamic tags.
    tags List<String>

    The entity group configuration tags list.

    The following attributes are exported:

    inventorySource string
    The inventory source Examples: "Active Directory", "Okta".
    inventoryType string
    The inventory type Examples: "computer", "username".
    criticality string
    The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
    description string
    The entity group configuration description.
    dynamicTags boolean
    If dynamic tags are enabled for configuration.
    group string
    (Deprecated) The entity group configuration inventory group. The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    Deprecated: The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    inventoryKey string
    The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
    inventoryValue string
    The inventory value to match.
    name string
    The entity group configuration name.
    suppressed boolean
    tagSchema string
    The tag schema to be used for dynamic tags.
    tags string[]

    The entity group configuration tags list.

    The following attributes are exported:

    inventory_source str
    The inventory source Examples: "Active Directory", "Okta".
    inventory_type str
    The inventory type Examples: "computer", "username".
    criticality str
    The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
    description str
    The entity group configuration description.
    dynamic_tags bool
    If dynamic tags are enabled for configuration.
    group str
    (Deprecated) The entity group configuration inventory group. The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    Deprecated: The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    inventory_key str
    The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
    inventory_value str
    The inventory value to match.
    name str
    The entity group configuration name.
    suppressed bool
    tag_schema str
    The tag schema to be used for dynamic tags.
    tags Sequence[str]

    The entity group configuration tags list.

    The following attributes are exported:

    inventorySource String
    The inventory source Examples: "Active Directory", "Okta".
    inventoryType String
    The inventory type Examples: "computer", "username".
    criticality String
    The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
    description String
    The entity group configuration description.
    dynamicTags Boolean
    If dynamic tags are enabled for configuration.
    group String
    (Deprecated) The entity group configuration inventory group. The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    Deprecated: The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    inventoryKey String
    The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
    inventoryValue String
    The inventory value to match.
    name String
    The entity group configuration name.
    suppressed Boolean
    tagSchema String
    The tag schema to be used for dynamic tags.
    tags List<String>

    The entity group configuration tags list.

    The following attributes are exported:

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing CseInventoryEntityGroupConfiguration Resource

    Get an existing CseInventoryEntityGroupConfiguration 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?: CseInventoryEntityGroupConfigurationState, opts?: CustomResourceOptions): CseInventoryEntityGroupConfiguration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            criticality: Optional[str] = None,
            description: Optional[str] = None,
            dynamic_tags: Optional[bool] = None,
            group: Optional[str] = None,
            inventory_key: Optional[str] = None,
            inventory_source: Optional[str] = None,
            inventory_type: Optional[str] = None,
            inventory_value: Optional[str] = None,
            name: Optional[str] = None,
            suppressed: Optional[bool] = None,
            tag_schema: Optional[str] = None,
            tags: Optional[Sequence[str]] = None) -> CseInventoryEntityGroupConfiguration
    func GetCseInventoryEntityGroupConfiguration(ctx *Context, name string, id IDInput, state *CseInventoryEntityGroupConfigurationState, opts ...ResourceOption) (*CseInventoryEntityGroupConfiguration, error)
    public static CseInventoryEntityGroupConfiguration Get(string name, Input<string> id, CseInventoryEntityGroupConfigurationState? state, CustomResourceOptions? opts = null)
    public static CseInventoryEntityGroupConfiguration get(String name, Output<String> id, CseInventoryEntityGroupConfigurationState 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:
    Criticality string
    The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
    Description string
    The entity group configuration description.
    DynamicTags bool
    If dynamic tags are enabled for configuration.
    Group string
    (Deprecated) The entity group configuration inventory group. The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    Deprecated: The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    InventoryKey string
    The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
    InventorySource string
    The inventory source Examples: "Active Directory", "Okta".
    InventoryType string
    The inventory type Examples: "computer", "username".
    InventoryValue string
    The inventory value to match.
    Name string
    The entity group configuration name.
    Suppressed bool
    TagSchema string
    The tag schema to be used for dynamic tags.
    Tags List<string>

    The entity group configuration tags list.

    The following attributes are exported:

    Criticality string
    The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
    Description string
    The entity group configuration description.
    DynamicTags bool
    If dynamic tags are enabled for configuration.
    Group string
    (Deprecated) The entity group configuration inventory group. The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    Deprecated: The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    InventoryKey string
    The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
    InventorySource string
    The inventory source Examples: "Active Directory", "Okta".
    InventoryType string
    The inventory type Examples: "computer", "username".
    InventoryValue string
    The inventory value to match.
    Name string
    The entity group configuration name.
    Suppressed bool
    TagSchema string
    The tag schema to be used for dynamic tags.
    Tags []string

    The entity group configuration tags list.

    The following attributes are exported:

    criticality String
    The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
    description String
    The entity group configuration description.
    dynamicTags Boolean
    If dynamic tags are enabled for configuration.
    group String
    (Deprecated) The entity group configuration inventory group. The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    Deprecated: The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    inventoryKey String
    The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
    inventorySource String
    The inventory source Examples: "Active Directory", "Okta".
    inventoryType String
    The inventory type Examples: "computer", "username".
    inventoryValue String
    The inventory value to match.
    name String
    The entity group configuration name.
    suppressed Boolean
    tagSchema String
    The tag schema to be used for dynamic tags.
    tags List<String>

    The entity group configuration tags list.

    The following attributes are exported:

    criticality string
    The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
    description string
    The entity group configuration description.
    dynamicTags boolean
    If dynamic tags are enabled for configuration.
    group string
    (Deprecated) The entity group configuration inventory group. The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    Deprecated: The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    inventoryKey string
    The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
    inventorySource string
    The inventory source Examples: "Active Directory", "Okta".
    inventoryType string
    The inventory type Examples: "computer", "username".
    inventoryValue string
    The inventory value to match.
    name string
    The entity group configuration name.
    suppressed boolean
    tagSchema string
    The tag schema to be used for dynamic tags.
    tags string[]

    The entity group configuration tags list.

    The following attributes are exported:

    criticality str
    The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
    description str
    The entity group configuration description.
    dynamic_tags bool
    If dynamic tags are enabled for configuration.
    group str
    (Deprecated) The entity group configuration inventory group. The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    Deprecated: The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    inventory_key str
    The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
    inventory_source str
    The inventory source Examples: "Active Directory", "Okta".
    inventory_type str
    The inventory type Examples: "computer", "username".
    inventory_value str
    The inventory value to match.
    name str
    The entity group configuration name.
    suppressed bool
    tag_schema str
    The tag schema to be used for dynamic tags.
    tags Sequence[str]

    The entity group configuration tags list.

    The following attributes are exported:

    criticality String
    The entity group configuration criticality Examples: "HIGH", "CRITICALITY".
    description String
    The entity group configuration description.
    dynamicTags Boolean
    If dynamic tags are enabled for configuration.
    group String
    (Deprecated) The entity group configuration inventory group. The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    Deprecated: The field group is deprecated and will be removed in a future release of the provider -- please make usage of inventory_key, inventory_value instead.

    inventoryKey String
    The inventory key to apply configuration Examples: "groups", "normalizedHostname", "normalizedComputerName".
    inventorySource String
    The inventory source Examples: "Active Directory", "Okta".
    inventoryType String
    The inventory type Examples: "computer", "username".
    inventoryValue String
    The inventory value to match.
    name String
    The entity group configuration name.
    suppressed Boolean
    tagSchema String
    The tag schema to be used for dynamic tags.
    tags List<String>

    The entity group configuration tags list.

    The following attributes are exported:

    Import

    Inventory Entity Group Configuration can be imported using the field id, e.g.:

    hcl

    $ pulumi import sumologic:index/cseInventoryEntityGroupConfiguration:CseInventoryEntityGroupConfiguration inventory_entity_group_configuration id
    

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

    Package Details

    Repository
    Sumo Logic pulumi/pulumi-sumologic
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sumologic Terraform Provider.
    sumologic logo
    Sumo Logic v0.21.0 published on Thursday, Apr 11, 2024 by Pulumi