published on Monday, Jun 22, 2026 by Pulumi
published on Monday, Jun 22, 2026 by Pulumi
Manage networks in the platform using the Classless Inter-Domain Routing (CIDR) format. The system identifies network subnets to help Google Security Operations recognize internal assets and consider network sensitivity during playbook execution.
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 SoarNetwork, see:
- API documentation
- How-to Guides
Example Usage
Chronicle Soarnetwork Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const sample = new gcp.chronicle.SoarNetwork("sample", {
location: "us",
instance: "00000000-0000-0000-0000-000000000000",
displayName: "Internal",
address: "192.168.1.0/24",
environmentsJson: JSON.stringify(["*"]),
priority: 1,
});
import pulumi
import json
import pulumi_gcp as gcp
sample = gcp.chronicle.SoarNetwork("sample",
location="us",
instance="00000000-0000-0000-0000-000000000000",
display_name="Internal",
address="192.168.1.0/24",
environments_json=json.dumps(["*"]),
priority=1)
package main
import (
"encoding/json"
"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 {
tmpJSON0, err := json.Marshal([]string{
"*",
})
if err != nil {
return err
}
json0 := string(tmpJSON0)
_, err = chronicle.NewSoarNetwork(ctx, "sample", &chronicle.SoarNetworkArgs{
Location: pulumi.String("us"),
Instance: pulumi.String("00000000-0000-0000-0000-000000000000"),
DisplayName: pulumi.String("Internal"),
Address: pulumi.String("192.168.1.0/24"),
EnvironmentsJson: pulumi.String(json0),
Priority: pulumi.Int(1),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var sample = new Gcp.Chronicle.SoarNetwork("sample", new()
{
Location = "us",
Instance = "00000000-0000-0000-0000-000000000000",
DisplayName = "Internal",
Address = "192.168.1.0/24",
EnvironmentsJson = JsonSerializer.Serialize(new[]
{
"*",
}),
Priority = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.chronicle.SoarNetwork;
import com.pulumi.gcp.chronicle.SoarNetworkArgs;
import static com.pulumi.codegen.internal.Serialization.*;
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 sample = new SoarNetwork("sample", SoarNetworkArgs.builder()
.location("us")
.instance("00000000-0000-0000-0000-000000000000")
.displayName("Internal")
.address("192.168.1.0/24")
.environmentsJson(serializeJson(
jsonArray("*")))
.priority(1)
.build());
}
}
resources:
sample:
type: gcp:chronicle:SoarNetwork
properties:
location: us
instance: 00000000-0000-0000-0000-000000000000
displayName: Internal
address: 192.168.1.0/24
environmentsJson:
fn::toJSON:
- '*'
priority: 1
pulumi {
required_providers {
gcp = {
source = "pulumi/gcp"
}
}
}
resource "gcp_chronicle_soarnetwork" "sample" {
location = "us"
instance = "00000000-0000-0000-0000-000000000000"
display_name = "Internal"
address = "192.168.1.0/24"
environments_json = jsonencode(["*"])
priority = 1
}
Create SoarNetwork Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SoarNetwork(name: string, args: SoarNetworkArgs, opts?: CustomResourceOptions);@overload
def SoarNetwork(resource_name: str,
args: SoarNetworkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SoarNetwork(resource_name: str,
opts: Optional[ResourceOptions] = None,
address: Optional[str] = None,
display_name: Optional[str] = None,
environments_json: Optional[str] = None,
instance: Optional[str] = None,
location: Optional[str] = None,
deletion_policy: Optional[str] = None,
priority: Optional[int] = None,
project: Optional[str] = None)func NewSoarNetwork(ctx *Context, name string, args SoarNetworkArgs, opts ...ResourceOption) (*SoarNetwork, error)public SoarNetwork(string name, SoarNetworkArgs args, CustomResourceOptions? opts = null)
public SoarNetwork(String name, SoarNetworkArgs args)
public SoarNetwork(String name, SoarNetworkArgs args, CustomResourceOptions options)
type: gcp:chronicle:SoarNetwork
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "gcp_chronicle_soarnetwork" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args SoarNetworkArgs
- 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 SoarNetworkArgs
- 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 SoarNetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SoarNetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SoarNetworkArgs
- 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 soarNetworkResource = new Gcp.Chronicle.SoarNetwork("soarNetworkResource", new()
{
Address = "string",
DisplayName = "string",
EnvironmentsJson = "string",
Instance = "string",
Location = "string",
DeletionPolicy = "string",
Priority = 0,
Project = "string",
});
example, err := chronicle.NewSoarNetwork(ctx, "soarNetworkResource", &chronicle.SoarNetworkArgs{
Address: pulumi.String("string"),
DisplayName: pulumi.String("string"),
EnvironmentsJson: pulumi.String("string"),
Instance: pulumi.String("string"),
Location: pulumi.String("string"),
DeletionPolicy: pulumi.String("string"),
Priority: pulumi.Int(0),
Project: pulumi.String("string"),
})
resource "gcp_chronicle_soarnetwork" "soarNetworkResource" {
address = "string"
display_name = "string"
environments_json = "string"
instance = "string"
location = "string"
deletion_policy = "string"
priority = 0
project = "string"
}
var soarNetworkResource = new SoarNetwork("soarNetworkResource", SoarNetworkArgs.builder()
.address("string")
.displayName("string")
.environmentsJson("string")
.instance("string")
.location("string")
.deletionPolicy("string")
.priority(0)
.project("string")
.build());
soar_network_resource = gcp.chronicle.SoarNetwork("soarNetworkResource",
address="string",
display_name="string",
environments_json="string",
instance="string",
location="string",
deletion_policy="string",
priority=0,
project="string")
const soarNetworkResource = new gcp.chronicle.SoarNetwork("soarNetworkResource", {
address: "string",
displayName: "string",
environmentsJson: "string",
instance: "string",
location: "string",
deletionPolicy: "string",
priority: 0,
project: "string",
});
type: gcp:chronicle:SoarNetwork
properties:
address: string
deletionPolicy: string
displayName: string
environmentsJson: string
instance: string
location: string
priority: 0
project: string
SoarNetwork 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 SoarNetwork resource accepts the following input properties:
- Address string
- Subnet in CIDR format.
- Display
Name string - SoarNetwork name, limited to 4096 characters.
- Environments
Json string - SoarNetwork associated logical environments.
- 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.
- Priority int
- SoarNetwork priority.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Address string
- Subnet in CIDR format.
- Display
Name string - SoarNetwork name, limited to 4096 characters.
- Environments
Json string - SoarNetwork associated logical environments.
- 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.
- Priority int
- SoarNetwork priority.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- address string
- Subnet in CIDR format.
- display_
name string - SoarNetwork name, limited to 4096 characters.
- environments_
json string - SoarNetwork associated logical environments.
- 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.
- priority number
- SoarNetwork priority.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- address String
- Subnet in CIDR format.
- display
Name String - SoarNetwork name, limited to 4096 characters.
- environments
Json String - SoarNetwork associated logical environments.
- 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.
- priority Integer
- SoarNetwork priority.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- address string
- Subnet in CIDR format.
- display
Name string - SoarNetwork name, limited to 4096 characters.
- environments
Json string - SoarNetwork associated logical environments.
- 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.
- priority number
- SoarNetwork priority.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- address str
- Subnet in CIDR format.
- display_
name str - SoarNetwork name, limited to 4096 characters.
- environments_
json str - SoarNetwork associated logical environments.
- 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.
- priority int
- SoarNetwork priority.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- address String
- Subnet in CIDR format.
- display
Name String - SoarNetwork name, limited to 4096 characters.
- environments
Json String - SoarNetwork associated logical environments.
- 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.
- priority Number
- SoarNetwork priority.
- 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 SoarNetwork resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Identifier. The resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- Soar
Network stringId - Id of the soarNetwork record.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Identifier. The resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- Soar
Network stringId - Id of the soarNetwork record.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Identifier. The resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- soar_
network_ stringid - Id of the soarNetwork record.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Identifier. The resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- soar
Network StringId - Id of the soarNetwork record.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Identifier. The resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- soar
Network stringId - Id of the soarNetwork record.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Identifier. The resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- soar_
network_ strid - Id of the soarNetwork record.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Identifier. The resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- soar
Network StringId - Id of the soarNetwork record.
Look up Existing SoarNetwork Resource
Get an existing SoarNetwork 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?: SoarNetworkState, opts?: CustomResourceOptions): SoarNetwork@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
address: Optional[str] = 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,
priority: Optional[int] = None,
project: Optional[str] = None,
soar_network_id: Optional[str] = None) -> SoarNetworkfunc GetSoarNetwork(ctx *Context, name string, id IDInput, state *SoarNetworkState, opts ...ResourceOption) (*SoarNetwork, error)public static SoarNetwork Get(string name, Input<string> id, SoarNetworkState? state, CustomResourceOptions? opts = null)public static SoarNetwork get(String name, Output<String> id, SoarNetworkState state, CustomResourceOptions options)resources: _: type: gcp:chronicle:SoarNetwork get: id: ${id}import {
to = gcp_chronicle_soarnetwork.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.
- Address string
- Subnet in CIDR format.
- 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 - SoarNetwork name, limited to 4096 characters.
- Environments
Json string - SoarNetwork associated logical environments.
- 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 resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- Priority int
- SoarNetwork priority.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Soar
Network stringId - Id of the soarNetwork record.
- Address string
- Subnet in CIDR format.
- 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 - SoarNetwork name, limited to 4096 characters.
- Environments
Json string - SoarNetwork associated logical environments.
- 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 resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- Priority int
- SoarNetwork priority.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Soar
Network stringId - Id of the soarNetwork record.
- address string
- Subnet in CIDR format.
- 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 - SoarNetwork name, limited to 4096 characters.
- environments_
json string - SoarNetwork associated logical environments.
- 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 resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- priority number
- SoarNetwork priority.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- soar_
network_ stringid - Id of the soarNetwork record.
- address String
- Subnet in CIDR format.
- 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 - SoarNetwork name, limited to 4096 characters.
- environments
Json String - SoarNetwork associated logical environments.
- 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 resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- priority Integer
- SoarNetwork priority.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- soar
Network StringId - Id of the soarNetwork record.
- address string
- Subnet in CIDR format.
- 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 - SoarNetwork name, limited to 4096 characters.
- environments
Json string - SoarNetwork associated logical environments.
- 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 resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- priority number
- SoarNetwork priority.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- soar
Network stringId - Id of the soarNetwork record.
- address str
- Subnet in CIDR format.
- 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 - SoarNetwork name, limited to 4096 characters.
- environments_
json str - SoarNetwork associated logical environments.
- 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 resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- priority int
- SoarNetwork priority.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- soar_
network_ strid - Id of the soarNetwork record.
- address String
- Subnet in CIDR format.
- 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 - SoarNetwork name, limited to 4096 characters.
- environments
Json String - SoarNetwork associated logical environments.
- 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 resource name of the SoarNetwork. Format: projects/{project}/locations/{location}/instances/{instance}/soarNetworks/{soar_network}
- priority Number
- SoarNetwork priority.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- soar
Network StringId - Id of the soarNetwork record.
Import
SoarNetwork can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/instances/{{instance}}/soarNetworks/{{soar_network_id}}{{project}}/{{location}}/{{instance}}/{{soar_network_id}}{{location}}/{{instance}}/{{soar_network_id}}
When using the pulumi import command, SoarNetwork can be imported using one of the formats above. For example:
$ pulumi import gcp:chronicle/soarNetwork:SoarNetwork default projects/{{project}}/locations/{{location}}/instances/{{instance}}/soarNetworks/{{soar_network_id}}
$ pulumi import gcp:chronicle/soarNetwork:SoarNetwork default {{project}}/{{location}}/{{instance}}/{{soar_network_id}}
$ pulumi import gcp:chronicle/soarNetwork:SoarNetwork default {{location}}/{{instance}}/{{soar_network_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-betaTerraform Provider.
published on Monday, Jun 22, 2026 by Pulumi