1. Packages
  2. Splunk Provider
  3. API Docs
  4. OutputsTcpServer
Splunk v1.2.17 published on Wednesday, Apr 9, 2025 by Pulumi

splunk.OutputsTcpServer

Explore with Pulumi AI

# Resource: splunk.OutputsTcpServer

Access data forwarding configurations.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as splunk from "@pulumi/splunk";

const tcpServer = new splunk.OutputsTcpServer("tcp_server", {
    name: "new-host:1234",
    sslAltNameToCheck: "old-host",
});
Copy
import pulumi
import pulumi_splunk as splunk

tcp_server = splunk.OutputsTcpServer("tcp_server",
    name="new-host:1234",
    ssl_alt_name_to_check="old-host")
Copy
package main

import (
	"github.com/pulumi/pulumi-splunk/sdk/go/splunk"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := splunk.NewOutputsTcpServer(ctx, "tcp_server", &splunk.OutputsTcpServerArgs{
			Name:              pulumi.String("new-host:1234"),
			SslAltNameToCheck: pulumi.String("old-host"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Splunk = Pulumi.Splunk;

return await Deployment.RunAsync(() => 
{
    var tcpServer = new Splunk.OutputsTcpServer("tcp_server", new()
    {
        Name = "new-host:1234",
        SslAltNameToCheck = "old-host",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.splunk.OutputsTcpServer;
import com.pulumi.splunk.OutputsTcpServerArgs;
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 tcpServer = new OutputsTcpServer("tcpServer", OutputsTcpServerArgs.builder()
            .name("new-host:1234")
            .sslAltNameToCheck("old-host")
            .build());

    }
}
Copy
resources:
  tcpServer:
    type: splunk:OutputsTcpServer
    name: tcp_server
    properties:
      name: new-host:1234
      sslAltNameToCheck: old-host
Copy

Create OutputsTcpServer Resource

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

Constructor syntax

new OutputsTcpServer(name: string, args?: OutputsTcpServerArgs, opts?: CustomResourceOptions);
@overload
def OutputsTcpServer(resource_name: str,
                     args: Optional[OutputsTcpServerArgs] = None,
                     opts: Optional[ResourceOptions] = None)

@overload
def OutputsTcpServer(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     acl: Optional[OutputsTcpServerAclArgs] = None,
                     disabled: Optional[bool] = None,
                     method: Optional[str] = None,
                     name: Optional[str] = None,
                     ssl_alt_name_to_check: Optional[str] = None,
                     ssl_cert_path: Optional[str] = None,
                     ssl_cipher: Optional[str] = None,
                     ssl_common_name_to_check: Optional[str] = None,
                     ssl_password: Optional[str] = None,
                     ssl_root_ca_path: Optional[str] = None,
                     ssl_verify_server_cert: Optional[bool] = None)
func NewOutputsTcpServer(ctx *Context, name string, args *OutputsTcpServerArgs, opts ...ResourceOption) (*OutputsTcpServer, error)
public OutputsTcpServer(string name, OutputsTcpServerArgs? args = null, CustomResourceOptions? opts = null)
public OutputsTcpServer(String name, OutputsTcpServerArgs args)
public OutputsTcpServer(String name, OutputsTcpServerArgs args, CustomResourceOptions options)
type: splunk:OutputsTcpServer
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args OutputsTcpServerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args OutputsTcpServerArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args OutputsTcpServerArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args OutputsTcpServerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. OutputsTcpServerArgs
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 outputsTcpServerResource = new Splunk.OutputsTcpServer("outputsTcpServerResource", new()
{
    Acl = new Splunk.Inputs.OutputsTcpServerAclArgs
    {
        App = "string",
        CanChangePerms = false,
        CanShareApp = false,
        CanShareGlobal = false,
        CanShareUser = false,
        CanWrite = false,
        Owner = "string",
        Reads = new[]
        {
            "string",
        },
        Removable = false,
        Sharing = "string",
        Writes = new[]
        {
            "string",
        },
    },
    Disabled = false,
    Method = "string",
    Name = "string",
    SslAltNameToCheck = "string",
    SslCertPath = "string",
    SslCipher = "string",
    SslCommonNameToCheck = "string",
    SslPassword = "string",
    SslRootCaPath = "string",
    SslVerifyServerCert = false,
});
Copy
example, err := splunk.NewOutputsTcpServer(ctx, "outputsTcpServerResource", &splunk.OutputsTcpServerArgs{
	Acl: &splunk.OutputsTcpServerAclArgs{
		App:            pulumi.String("string"),
		CanChangePerms: pulumi.Bool(false),
		CanShareApp:    pulumi.Bool(false),
		CanShareGlobal: pulumi.Bool(false),
		CanShareUser:   pulumi.Bool(false),
		CanWrite:       pulumi.Bool(false),
		Owner:          pulumi.String("string"),
		Reads: pulumi.StringArray{
			pulumi.String("string"),
		},
		Removable: pulumi.Bool(false),
		Sharing:   pulumi.String("string"),
		Writes: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Disabled:             pulumi.Bool(false),
	Method:               pulumi.String("string"),
	Name:                 pulumi.String("string"),
	SslAltNameToCheck:    pulumi.String("string"),
	SslCertPath:          pulumi.String("string"),
	SslCipher:            pulumi.String("string"),
	SslCommonNameToCheck: pulumi.String("string"),
	SslPassword:          pulumi.String("string"),
	SslRootCaPath:        pulumi.String("string"),
	SslVerifyServerCert:  pulumi.Bool(false),
})
Copy
var outputsTcpServerResource = new OutputsTcpServer("outputsTcpServerResource", OutputsTcpServerArgs.builder()
    .acl(OutputsTcpServerAclArgs.builder()
        .app("string")
        .canChangePerms(false)
        .canShareApp(false)
        .canShareGlobal(false)
        .canShareUser(false)
        .canWrite(false)
        .owner("string")
        .reads("string")
        .removable(false)
        .sharing("string")
        .writes("string")
        .build())
    .disabled(false)
    .method("string")
    .name("string")
    .sslAltNameToCheck("string")
    .sslCertPath("string")
    .sslCipher("string")
    .sslCommonNameToCheck("string")
    .sslPassword("string")
    .sslRootCaPath("string")
    .sslVerifyServerCert(false)
    .build());
Copy
outputs_tcp_server_resource = splunk.OutputsTcpServer("outputsTcpServerResource",
    acl={
        "app": "string",
        "can_change_perms": False,
        "can_share_app": False,
        "can_share_global": False,
        "can_share_user": False,
        "can_write": False,
        "owner": "string",
        "reads": ["string"],
        "removable": False,
        "sharing": "string",
        "writes": ["string"],
    },
    disabled=False,
    method="string",
    name="string",
    ssl_alt_name_to_check="string",
    ssl_cert_path="string",
    ssl_cipher="string",
    ssl_common_name_to_check="string",
    ssl_password="string",
    ssl_root_ca_path="string",
    ssl_verify_server_cert=False)
Copy
const outputsTcpServerResource = new splunk.OutputsTcpServer("outputsTcpServerResource", {
    acl: {
        app: "string",
        canChangePerms: false,
        canShareApp: false,
        canShareGlobal: false,
        canShareUser: false,
        canWrite: false,
        owner: "string",
        reads: ["string"],
        removable: false,
        sharing: "string",
        writes: ["string"],
    },
    disabled: false,
    method: "string",
    name: "string",
    sslAltNameToCheck: "string",
    sslCertPath: "string",
    sslCipher: "string",
    sslCommonNameToCheck: "string",
    sslPassword: "string",
    sslRootCaPath: "string",
    sslVerifyServerCert: false,
});
Copy
type: splunk:OutputsTcpServer
properties:
    acl:
        app: string
        canChangePerms: false
        canShareApp: false
        canShareGlobal: false
        canShareUser: false
        canWrite: false
        owner: string
        reads:
            - string
        removable: false
        sharing: string
        writes:
            - string
    disabled: false
    method: string
    name: string
    sslAltNameToCheck: string
    sslCertPath: string
    sslCipher: string
    sslCommonNameToCheck: string
    sslPassword: string
    sslRootCaPath: string
    sslVerifyServerCert: false
Copy

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

Acl OutputsTcpServerAcl
The app/user context that is the namespace for the resource
Disabled bool
If true, disables the group.
Method string
Valid values: (clone | balance | autobalance) The data distribution method used when two or more servers exist in the same forwarder group.
Name Changes to this property will trigger replacement. string
: of the Splunk receiver. can be either an ip address or server name. is the that port that the Splunk receiver is listening on.
SslAltNameToCheck string
The alternate name to match in the remote server's SSL certificate.
SslCertPath string
Path to the client certificate. If specified, connection uses SSL.
SslCipher string
SSL Cipher in the form ALL:!aNULL:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
SslCommonNameToCheck string
Check the common name of the server's certificate against this name. If there is no match, assume that Splunk Enterprise is not authenticated against this server. You must specify this setting if sslVerifyServerCert is true.
SslPassword string
The password associated with the CAcert. The default Splunk Enterprise CAcert uses the password "password."
SslRootCaPath string
The path to the root certificate authority file.
SslVerifyServerCert bool
If true, make sure that the server you are connecting to is a valid one (authenticated). Both the common name and the alternate name of the server are then checked for a match.
Acl OutputsTcpServerAclArgs
The app/user context that is the namespace for the resource
Disabled bool
If true, disables the group.
Method string
Valid values: (clone | balance | autobalance) The data distribution method used when two or more servers exist in the same forwarder group.
Name Changes to this property will trigger replacement. string
: of the Splunk receiver. can be either an ip address or server name. is the that port that the Splunk receiver is listening on.
SslAltNameToCheck string
The alternate name to match in the remote server's SSL certificate.
SslCertPath string
Path to the client certificate. If specified, connection uses SSL.
SslCipher string
SSL Cipher in the form ALL:!aNULL:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
SslCommonNameToCheck string
Check the common name of the server's certificate against this name. If there is no match, assume that Splunk Enterprise is not authenticated against this server. You must specify this setting if sslVerifyServerCert is true.
SslPassword string
The password associated with the CAcert. The default Splunk Enterprise CAcert uses the password "password."
SslRootCaPath string
The path to the root certificate authority file.
SslVerifyServerCert bool
If true, make sure that the server you are connecting to is a valid one (authenticated). Both the common name and the alternate name of the server are then checked for a match.
acl OutputsTcpServerAcl
The app/user context that is the namespace for the resource
disabled Boolean
If true, disables the group.
method String
Valid values: (clone | balance | autobalance) The data distribution method used when two or more servers exist in the same forwarder group.
name Changes to this property will trigger replacement. String
: of the Splunk receiver. can be either an ip address or server name. is the that port that the Splunk receiver is listening on.
sslAltNameToCheck String
The alternate name to match in the remote server's SSL certificate.
sslCertPath String
Path to the client certificate. If specified, connection uses SSL.
sslCipher String
SSL Cipher in the form ALL:!aNULL:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
sslCommonNameToCheck String
Check the common name of the server's certificate against this name. If there is no match, assume that Splunk Enterprise is not authenticated against this server. You must specify this setting if sslVerifyServerCert is true.
sslPassword String
The password associated with the CAcert. The default Splunk Enterprise CAcert uses the password "password."
sslRootCaPath String
The path to the root certificate authority file.
sslVerifyServerCert Boolean
If true, make sure that the server you are connecting to is a valid one (authenticated). Both the common name and the alternate name of the server are then checked for a match.
acl OutputsTcpServerAcl
The app/user context that is the namespace for the resource
disabled boolean
If true, disables the group.
method string
Valid values: (clone | balance | autobalance) The data distribution method used when two or more servers exist in the same forwarder group.
name Changes to this property will trigger replacement. string
: of the Splunk receiver. can be either an ip address or server name. is the that port that the Splunk receiver is listening on.
sslAltNameToCheck string
The alternate name to match in the remote server's SSL certificate.
sslCertPath string
Path to the client certificate. If specified, connection uses SSL.
sslCipher string
SSL Cipher in the form ALL:!aNULL:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
sslCommonNameToCheck string
Check the common name of the server's certificate against this name. If there is no match, assume that Splunk Enterprise is not authenticated against this server. You must specify this setting if sslVerifyServerCert is true.
sslPassword string
The password associated with the CAcert. The default Splunk Enterprise CAcert uses the password "password."
sslRootCaPath string
The path to the root certificate authority file.
sslVerifyServerCert boolean
If true, make sure that the server you are connecting to is a valid one (authenticated). Both the common name and the alternate name of the server are then checked for a match.
acl OutputsTcpServerAclArgs
The app/user context that is the namespace for the resource
disabled bool
If true, disables the group.
method str
Valid values: (clone | balance | autobalance) The data distribution method used when two or more servers exist in the same forwarder group.
name Changes to this property will trigger replacement. str
: of the Splunk receiver. can be either an ip address or server name. is the that port that the Splunk receiver is listening on.
ssl_alt_name_to_check str
The alternate name to match in the remote server's SSL certificate.
ssl_cert_path str
Path to the client certificate. If specified, connection uses SSL.
ssl_cipher str
SSL Cipher in the form ALL:!aNULL:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
ssl_common_name_to_check str
Check the common name of the server's certificate against this name. If there is no match, assume that Splunk Enterprise is not authenticated against this server. You must specify this setting if sslVerifyServerCert is true.
ssl_password str
The password associated with the CAcert. The default Splunk Enterprise CAcert uses the password "password."
ssl_root_ca_path str
The path to the root certificate authority file.
ssl_verify_server_cert bool
If true, make sure that the server you are connecting to is a valid one (authenticated). Both the common name and the alternate name of the server are then checked for a match.
acl Property Map
The app/user context that is the namespace for the resource
disabled Boolean
If true, disables the group.
method String
Valid values: (clone | balance | autobalance) The data distribution method used when two or more servers exist in the same forwarder group.
name Changes to this property will trigger replacement. String
: of the Splunk receiver. can be either an ip address or server name. is the that port that the Splunk receiver is listening on.
sslAltNameToCheck String
The alternate name to match in the remote server's SSL certificate.
sslCertPath String
Path to the client certificate. If specified, connection uses SSL.
sslCipher String
SSL Cipher in the form ALL:!aNULL:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
sslCommonNameToCheck String
Check the common name of the server's certificate against this name. If there is no match, assume that Splunk Enterprise is not authenticated against this server. You must specify this setting if sslVerifyServerCert is true.
sslPassword String
The password associated with the CAcert. The default Splunk Enterprise CAcert uses the password "password."
sslRootCaPath String
The path to the root certificate authority file.
sslVerifyServerCert Boolean
If true, make sure that the server you are connecting to is a valid one (authenticated). Both the common name and the alternate name of the server are then checked for a match.

Outputs

All input properties are implicitly available as output properties. Additionally, the OutputsTcpServer 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 OutputsTcpServer Resource

Get an existing OutputsTcpServer 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?: OutputsTcpServerState, opts?: CustomResourceOptions): OutputsTcpServer
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        acl: Optional[OutputsTcpServerAclArgs] = None,
        disabled: Optional[bool] = None,
        method: Optional[str] = None,
        name: Optional[str] = None,
        ssl_alt_name_to_check: Optional[str] = None,
        ssl_cert_path: Optional[str] = None,
        ssl_cipher: Optional[str] = None,
        ssl_common_name_to_check: Optional[str] = None,
        ssl_password: Optional[str] = None,
        ssl_root_ca_path: Optional[str] = None,
        ssl_verify_server_cert: Optional[bool] = None) -> OutputsTcpServer
func GetOutputsTcpServer(ctx *Context, name string, id IDInput, state *OutputsTcpServerState, opts ...ResourceOption) (*OutputsTcpServer, error)
public static OutputsTcpServer Get(string name, Input<string> id, OutputsTcpServerState? state, CustomResourceOptions? opts = null)
public static OutputsTcpServer get(String name, Output<String> id, OutputsTcpServerState state, CustomResourceOptions options)
resources:  _:    type: splunk:OutputsTcpServer    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Acl OutputsTcpServerAcl
The app/user context that is the namespace for the resource
Disabled bool
If true, disables the group.
Method string
Valid values: (clone | balance | autobalance) The data distribution method used when two or more servers exist in the same forwarder group.
Name Changes to this property will trigger replacement. string
: of the Splunk receiver. can be either an ip address or server name. is the that port that the Splunk receiver is listening on.
SslAltNameToCheck string
The alternate name to match in the remote server's SSL certificate.
SslCertPath string
Path to the client certificate. If specified, connection uses SSL.
SslCipher string
SSL Cipher in the form ALL:!aNULL:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
SslCommonNameToCheck string
Check the common name of the server's certificate against this name. If there is no match, assume that Splunk Enterprise is not authenticated against this server. You must specify this setting if sslVerifyServerCert is true.
SslPassword string
The password associated with the CAcert. The default Splunk Enterprise CAcert uses the password "password."
SslRootCaPath string
The path to the root certificate authority file.
SslVerifyServerCert bool
If true, make sure that the server you are connecting to is a valid one (authenticated). Both the common name and the alternate name of the server are then checked for a match.
Acl OutputsTcpServerAclArgs
The app/user context that is the namespace for the resource
Disabled bool
If true, disables the group.
Method string
Valid values: (clone | balance | autobalance) The data distribution method used when two or more servers exist in the same forwarder group.
Name Changes to this property will trigger replacement. string
: of the Splunk receiver. can be either an ip address or server name. is the that port that the Splunk receiver is listening on.
SslAltNameToCheck string
The alternate name to match in the remote server's SSL certificate.
SslCertPath string
Path to the client certificate. If specified, connection uses SSL.
SslCipher string
SSL Cipher in the form ALL:!aNULL:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
SslCommonNameToCheck string
Check the common name of the server's certificate against this name. If there is no match, assume that Splunk Enterprise is not authenticated against this server. You must specify this setting if sslVerifyServerCert is true.
SslPassword string
The password associated with the CAcert. The default Splunk Enterprise CAcert uses the password "password."
SslRootCaPath string
The path to the root certificate authority file.
SslVerifyServerCert bool
If true, make sure that the server you are connecting to is a valid one (authenticated). Both the common name and the alternate name of the server are then checked for a match.
acl OutputsTcpServerAcl
The app/user context that is the namespace for the resource
disabled Boolean
If true, disables the group.
method String
Valid values: (clone | balance | autobalance) The data distribution method used when two or more servers exist in the same forwarder group.
name Changes to this property will trigger replacement. String
: of the Splunk receiver. can be either an ip address or server name. is the that port that the Splunk receiver is listening on.
sslAltNameToCheck String
The alternate name to match in the remote server's SSL certificate.
sslCertPath String
Path to the client certificate. If specified, connection uses SSL.
sslCipher String
SSL Cipher in the form ALL:!aNULL:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
sslCommonNameToCheck String
Check the common name of the server's certificate against this name. If there is no match, assume that Splunk Enterprise is not authenticated against this server. You must specify this setting if sslVerifyServerCert is true.
sslPassword String
The password associated with the CAcert. The default Splunk Enterprise CAcert uses the password "password."
sslRootCaPath String
The path to the root certificate authority file.
sslVerifyServerCert Boolean
If true, make sure that the server you are connecting to is a valid one (authenticated). Both the common name and the alternate name of the server are then checked for a match.
acl OutputsTcpServerAcl
The app/user context that is the namespace for the resource
disabled boolean
If true, disables the group.
method string
Valid values: (clone | balance | autobalance) The data distribution method used when two or more servers exist in the same forwarder group.
name Changes to this property will trigger replacement. string
: of the Splunk receiver. can be either an ip address or server name. is the that port that the Splunk receiver is listening on.
sslAltNameToCheck string
The alternate name to match in the remote server's SSL certificate.
sslCertPath string
Path to the client certificate. If specified, connection uses SSL.
sslCipher string
SSL Cipher in the form ALL:!aNULL:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
sslCommonNameToCheck string
Check the common name of the server's certificate against this name. If there is no match, assume that Splunk Enterprise is not authenticated against this server. You must specify this setting if sslVerifyServerCert is true.
sslPassword string
The password associated with the CAcert. The default Splunk Enterprise CAcert uses the password "password."
sslRootCaPath string
The path to the root certificate authority file.
sslVerifyServerCert boolean
If true, make sure that the server you are connecting to is a valid one (authenticated). Both the common name and the alternate name of the server are then checked for a match.
acl OutputsTcpServerAclArgs
The app/user context that is the namespace for the resource
disabled bool
If true, disables the group.
method str
Valid values: (clone | balance | autobalance) The data distribution method used when two or more servers exist in the same forwarder group.
name Changes to this property will trigger replacement. str
: of the Splunk receiver. can be either an ip address or server name. is the that port that the Splunk receiver is listening on.
ssl_alt_name_to_check str
The alternate name to match in the remote server's SSL certificate.
ssl_cert_path str
Path to the client certificate. If specified, connection uses SSL.
ssl_cipher str
SSL Cipher in the form ALL:!aNULL:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
ssl_common_name_to_check str
Check the common name of the server's certificate against this name. If there is no match, assume that Splunk Enterprise is not authenticated against this server. You must specify this setting if sslVerifyServerCert is true.
ssl_password str
The password associated with the CAcert. The default Splunk Enterprise CAcert uses the password "password."
ssl_root_ca_path str
The path to the root certificate authority file.
ssl_verify_server_cert bool
If true, make sure that the server you are connecting to is a valid one (authenticated). Both the common name and the alternate name of the server are then checked for a match.
acl Property Map
The app/user context that is the namespace for the resource
disabled Boolean
If true, disables the group.
method String
Valid values: (clone | balance | autobalance) The data distribution method used when two or more servers exist in the same forwarder group.
name Changes to this property will trigger replacement. String
: of the Splunk receiver. can be either an ip address or server name. is the that port that the Splunk receiver is listening on.
sslAltNameToCheck String
The alternate name to match in the remote server's SSL certificate.
sslCertPath String
Path to the client certificate. If specified, connection uses SSL.
sslCipher String
SSL Cipher in the form ALL:!aNULL:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM
sslCommonNameToCheck String
Check the common name of the server's certificate against this name. If there is no match, assume that Splunk Enterprise is not authenticated against this server. You must specify this setting if sslVerifyServerCert is true.
sslPassword String
The password associated with the CAcert. The default Splunk Enterprise CAcert uses the password "password."
sslRootCaPath String
The path to the root certificate authority file.
sslVerifyServerCert Boolean
If true, make sure that the server you are connecting to is a valid one (authenticated). Both the common name and the alternate name of the server are then checked for a match.

Supporting Types

OutputsTcpServerAcl
, OutputsTcpServerAclArgs

App Changes to this property will trigger replacement. string
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
CanChangePerms bool
Indicates if the active user can change permissions for this object. Defaults to true.
CanShareApp bool
Indicates if the active user can change sharing to app level. Defaults to true.
CanShareGlobal bool
Indicates if the active user can change sharing to system level. Defaults to true.
CanShareUser bool
Indicates if the active user can change sharing to user level. Defaults to true.
CanWrite bool
Indicates if the active user can edit this object. Defaults to true.
Owner string
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
Reads List<string>
Properties that indicate resource read permissions.
Removable bool
Indicates whether an admin or user with sufficient permissions can delete the entity.
Sharing Changes to this property will trigger replacement. string
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
Writes List<string>
Properties that indicate resource write permissions.
App Changes to this property will trigger replacement. string
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
CanChangePerms bool
Indicates if the active user can change permissions for this object. Defaults to true.
CanShareApp bool
Indicates if the active user can change sharing to app level. Defaults to true.
CanShareGlobal bool
Indicates if the active user can change sharing to system level. Defaults to true.
CanShareUser bool
Indicates if the active user can change sharing to user level. Defaults to true.
CanWrite bool
Indicates if the active user can edit this object. Defaults to true.
Owner string
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
Reads []string
Properties that indicate resource read permissions.
Removable bool
Indicates whether an admin or user with sufficient permissions can delete the entity.
Sharing Changes to this property will trigger replacement. string
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
Writes []string
Properties that indicate resource write permissions.
app Changes to this property will trigger replacement. String
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
canChangePerms Boolean
Indicates if the active user can change permissions for this object. Defaults to true.
canShareApp Boolean
Indicates if the active user can change sharing to app level. Defaults to true.
canShareGlobal Boolean
Indicates if the active user can change sharing to system level. Defaults to true.
canShareUser Boolean
Indicates if the active user can change sharing to user level. Defaults to true.
canWrite Boolean
Indicates if the active user can edit this object. Defaults to true.
owner String
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
reads List<String>
Properties that indicate resource read permissions.
removable Boolean
Indicates whether an admin or user with sufficient permissions can delete the entity.
sharing Changes to this property will trigger replacement. String
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
writes List<String>
Properties that indicate resource write permissions.
app Changes to this property will trigger replacement. string
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
canChangePerms boolean
Indicates if the active user can change permissions for this object. Defaults to true.
canShareApp boolean
Indicates if the active user can change sharing to app level. Defaults to true.
canShareGlobal boolean
Indicates if the active user can change sharing to system level. Defaults to true.
canShareUser boolean
Indicates if the active user can change sharing to user level. Defaults to true.
canWrite boolean
Indicates if the active user can edit this object. Defaults to true.
owner string
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
reads string[]
Properties that indicate resource read permissions.
removable boolean
Indicates whether an admin or user with sufficient permissions can delete the entity.
sharing Changes to this property will trigger replacement. string
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
writes string[]
Properties that indicate resource write permissions.
app Changes to this property will trigger replacement. str
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
can_change_perms bool
Indicates if the active user can change permissions for this object. Defaults to true.
can_share_app bool
Indicates if the active user can change sharing to app level. Defaults to true.
can_share_global bool
Indicates if the active user can change sharing to system level. Defaults to true.
can_share_user bool
Indicates if the active user can change sharing to user level. Defaults to true.
can_write bool
Indicates if the active user can edit this object. Defaults to true.
owner str
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
reads Sequence[str]
Properties that indicate resource read permissions.
removable bool
Indicates whether an admin or user with sufficient permissions can delete the entity.
sharing Changes to this property will trigger replacement. str
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
writes Sequence[str]
Properties that indicate resource write permissions.
app Changes to this property will trigger replacement. String
The app context for the resource. Required for updating saved search ACL properties. Allowed values are:The name of an app and system
canChangePerms Boolean
Indicates if the active user can change permissions for this object. Defaults to true.
canShareApp Boolean
Indicates if the active user can change sharing to app level. Defaults to true.
canShareGlobal Boolean
Indicates if the active user can change sharing to system level. Defaults to true.
canShareUser Boolean
Indicates if the active user can change sharing to user level. Defaults to true.
canWrite Boolean
Indicates if the active user can edit this object. Defaults to true.
owner String
User name of resource owner. Defaults to the resource creator. Required for updating any knowledge object ACL properties.nobody = All users may access the resource, but write access to the resource might be restricted.
reads List<String>
Properties that indicate resource read permissions.
removable Boolean
Indicates whether an admin or user with sufficient permissions can delete the entity.
sharing Changes to this property will trigger replacement. String
Indicates how the resource is shared. Required for updating any knowledge object ACL properties.app: Shared within a specific appglobal: (Default) Shared globally to all apps.user: Private to a user
writes List<String>
Properties that indicate resource write permissions.

Package Details

Repository
Splunk pulumi/pulumi-splunk
License
Apache-2.0
Notes
This Pulumi package is based on the splunk Terraform Provider.