1. Packages
  2. Packages
  3. Google Cloud (GCP) Classic
  4. API Docs
  5. chronicle
  6. SoarDomain
Viewing docs for Google Cloud v9.33.0
published on Wednesday, Aug 5, 2026 by Pulumi
gcp logo
Viewing docs for Google Cloud v9.33.0
published on Wednesday, Aug 5, 2026 by Pulumi

    A SOAR domain designate a domain as internal, ensuring that entities associated with it are treated as organizational assets rather than external threats during ingestion.

    Warning: This resource is in beta, and should be used with the terraform-provider-google-beta provider. See Provider Versions for more details on beta resources.

    To get more information about SoarDomain, see:

    Example Usage

    Chronicle Soardomain Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const example = new gcp.chronicle.SoarDomain("example", {
        location: "us",
        instance: "00000000-0000-0000-0000-000000000000",
        displayName: "test.com",
        environmentsJson: "[\"Default Environment\"]",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    example = gcp.chronicle.SoarDomain("example",
        location="us",
        instance="00000000-0000-0000-0000-000000000000",
        display_name="test.com",
        environments_json="[\"Default Environment\"]")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/chronicle"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := chronicle.NewSoarDomain(ctx, "example", &chronicle.SoarDomainArgs{
    			Location:         pulumi.String("us"),
    			Instance:         pulumi.String("00000000-0000-0000-0000-000000000000"),
    			DisplayName:      pulumi.String("test.com"),
    			EnvironmentsJson: pulumi.String("[\"Default Environment\"]"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Gcp.Chronicle.SoarDomain("example", new()
        {
            Location = "us",
            Instance = "00000000-0000-0000-0000-000000000000",
            DisplayName = "test.com",
            EnvironmentsJson = "[\"Default Environment\"]",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.chronicle.SoarDomain;
    import com.pulumi.gcp.chronicle.SoarDomainArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 example = new SoarDomain("example", SoarDomainArgs.builder()
                .location("us")
                .instance("00000000-0000-0000-0000-000000000000")
                .displayName("test.com")
                .environmentsJson("[\"Default Environment\"]")
                .build());
    
        }
    }
    
    resources:
      example:
        type: gcp:chronicle:SoarDomain
        properties:
          location: us
          instance: 00000000-0000-0000-0000-000000000000
          displayName: test.com
          environmentsJson: '["Default Environment"]'
    
    pulumi {
      required_providers {
        gcp = {
          source = "pulumi/gcp"
        }
      }
    }
    
    resource "gcp_chronicle_soardomain" "example" {
      location          = "us"
      instance          = "00000000-0000-0000-0000-000000000000"
      display_name      = "test.com"
      environments_json = "[\"Default Environment\"]"
    }
    

    Create SoarDomain Resource

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

    Constructor syntax

    new SoarDomain(name: string, args: SoarDomainArgs, opts?: CustomResourceOptions);
    @overload
    def SoarDomain(resource_name: str,
                   args: SoarDomainArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def SoarDomain(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   display_name: Optional[str] = None,
                   environments_json: Optional[str] = None,
                   instance: Optional[str] = None,
                   location: Optional[str] = None,
                   deletion_policy: Optional[str] = None,
                   project: Optional[str] = None)
    func NewSoarDomain(ctx *Context, name string, args SoarDomainArgs, opts ...ResourceOption) (*SoarDomain, error)
    public SoarDomain(string name, SoarDomainArgs args, CustomResourceOptions? opts = null)
    public SoarDomain(String name, SoarDomainArgs args)
    public SoarDomain(String name, SoarDomainArgs args, CustomResourceOptions options)
    
    type: gcp:chronicle:SoarDomain
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "gcp_chronicle_soar_domain" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args SoarDomainArgs
    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 SoarDomainArgs
    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 SoarDomainArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SoarDomainArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SoarDomainArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var soarDomainResource = new Gcp.Chronicle.SoarDomain("soarDomainResource", new()
    {
        DisplayName = "string",
        EnvironmentsJson = "string",
        Instance = "string",
        Location = "string",
        DeletionPolicy = "string",
        Project = "string",
    });
    
    example, err := chronicle.NewSoarDomain(ctx, "soarDomainResource", &chronicle.SoarDomainArgs{
    	DisplayName:      pulumi.String("string"),
    	EnvironmentsJson: pulumi.String("string"),
    	Instance:         pulumi.String("string"),
    	Location:         pulumi.String("string"),
    	DeletionPolicy:   pulumi.String("string"),
    	Project:          pulumi.String("string"),
    })
    
    resource "gcp_chronicle_soar_domain" "soarDomainResource" {
      lifecycle {
        create_before_destroy = true
      }
      display_name      = "string"
      environments_json = "string"
      instance          = "string"
      location          = "string"
      deletion_policy   = "string"
      project           = "string"
    }
    
    var soarDomainResource = new SoarDomain("soarDomainResource", SoarDomainArgs.builder()
        .displayName("string")
        .environmentsJson("string")
        .instance("string")
        .location("string")
        .deletionPolicy("string")
        .project("string")
        .build());
    
    soar_domain_resource = gcp.chronicle.SoarDomain("soarDomainResource",
        display_name="string",
        environments_json="string",
        instance="string",
        location="string",
        deletion_policy="string",
        project="string")
    
    const soarDomainResource = new gcp.chronicle.SoarDomain("soarDomainResource", {
        displayName: "string",
        environmentsJson: "string",
        instance: "string",
        location: "string",
        deletionPolicy: "string",
        project: "string",
    });
    
    type: gcp:chronicle:SoarDomain
    properties:
        deletionPolicy: string
        displayName: string
        environmentsJson: string
        instance: string
        location: string
        project: string
    

    SoarDomain Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SoarDomain resource accepts the following input properties:

    DisplayName string
    SoarDomain display name, limited to 4096 characters.
    EnvironmentsJson string
    SoarDomain associated logical environments (json).
    Instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    DeletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    DisplayName string
    SoarDomain display name, limited to 4096 characters.
    EnvironmentsJson string
    SoarDomain associated logical environments (json).
    Instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    DeletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    display_name string
    SoarDomain display name, limited to 4096 characters.
    environments_json string
    SoarDomain associated logical environments (json).
    instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    deletion_policy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    displayName String
    SoarDomain display name, limited to 4096 characters.
    environmentsJson String
    SoarDomain associated logical environments (json).
    instance String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    deletionPolicy String
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    displayName string
    SoarDomain display name, limited to 4096 characters.
    environmentsJson string
    SoarDomain associated logical environments (json).
    instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    deletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    display_name str
    SoarDomain display name, limited to 4096 characters.
    environments_json str
    SoarDomain associated logical environments (json).
    instance str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    deletion_policy str
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    displayName String
    SoarDomain display name, limited to 4096 characters.
    environmentsJson String
    SoarDomain associated logical environments (json).
    instance String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    deletionPolicy String
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    SoarDomainId string
    Id of the domain record.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    SoarDomainId string
    Id of the domain record.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    soar_domain_id string
    Id of the domain record.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    soarDomainId String
    Id of the domain record.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    soarDomainId string
    Id of the domain record.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    soar_domain_id str
    Id of the domain record.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    soarDomainId String
    Id of the domain record.

    Look up Existing SoarDomain Resource

    Get an existing SoarDomain 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?: SoarDomainState, opts?: CustomResourceOptions): SoarDomain
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            deletion_policy: Optional[str] = None,
            display_name: Optional[str] = None,
            environments_json: Optional[str] = None,
            instance: Optional[str] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            soar_domain_id: Optional[str] = None) -> SoarDomain
    func GetSoarDomain(ctx *Context, name string, id IDInput, state *SoarDomainState, opts ...ResourceOption) (*SoarDomain, error)
    public static SoarDomain Get(string name, Input<string> id, SoarDomainState? state, CustomResourceOptions? opts = null)
    public static SoarDomain get(String name, Output<String> id, SoarDomainState state, CustomResourceOptions options)
    resources:  _:    type: gcp:chronicle:SoarDomain    get:      id: ${id}
    import {
      to = gcp_chronicle_soar_domain.example
      id = "${id}"
    }
    
    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:
    DeletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    DisplayName string
    SoarDomain display name, limited to 4096 characters.
    EnvironmentsJson string
    SoarDomain associated logical environments (json).
    Instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Name string
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    SoarDomainId string
    Id of the domain record.
    DeletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    DisplayName string
    SoarDomain display name, limited to 4096 characters.
    EnvironmentsJson string
    SoarDomain associated logical environments (json).
    Instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Name string
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    SoarDomainId string
    Id of the domain record.
    deletion_policy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    display_name string
    SoarDomain display name, limited to 4096 characters.
    environments_json string
    SoarDomain associated logical environments (json).
    instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name string
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    soar_domain_id string
    Id of the domain record.
    deletionPolicy String
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    displayName String
    SoarDomain display name, limited to 4096 characters.
    environmentsJson String
    SoarDomain associated logical environments (json).
    instance String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name String
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    soarDomainId String
    Id of the domain record.
    deletionPolicy string
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    displayName string
    SoarDomain display name, limited to 4096 characters.
    environmentsJson string
    SoarDomain associated logical environments (json).
    instance string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name string
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    soarDomainId string
    Id of the domain record.
    deletion_policy str
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    display_name str
    SoarDomain display name, limited to 4096 characters.
    environments_json str
    SoarDomain associated logical environments (json).
    instance str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name str
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    soar_domain_id str
    Id of the domain record.
    deletionPolicy String
    Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
    displayName String
    SoarDomain display name, limited to 4096 characters.
    environmentsJson String
    SoarDomain associated logical environments (json).
    instance String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name String
    Identifier. The unique name(ID) of the SoarDomain. Format: projects/{project}/locations/{location}/instances/{instance}/soarDomains/{soar_domain_id}
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    soarDomainId String
    Id of the domain record.

    Import

    SoarDomain can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/instances/{{instance}}/soarDomains/{{soar_domain_id}}
    • {{project}}/{{location}}/{{instance}}/{{soar_domain_id}}
    • {{location}}/{{instance}}/{{soar_domain_id}}

    When using the pulumi import command, SoarDomain can be imported using one of the formats above. For example:

    $ pulumi import gcp:chronicle/soarDomain:SoarDomain default projects/{{project}}/locations/{{location}}/instances/{{instance}}/soarDomains/{{soar_domain_id}}
    $ pulumi import gcp:chronicle/soarDomain:SoarDomain default {{project}}/{{location}}/{{instance}}/{{soar_domain_id}}
    $ pulumi import gcp:chronicle/soarDomain:SoarDomain default {{location}}/{{instance}}/{{soar_domain_id}}
    

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

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Viewing docs for Google Cloud v9.33.0
    published on Wednesday, Aug 5, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial