published on Thursday, Apr 16, 2026 by ibm-cloud
published on Thursday, Apr 16, 2026 by ibm-cloud
Create, update, and delete Extension deployments with this resource.
Example Usage
Deploy IBMCloudKubernetes extension
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const logsExtensions = ibm.getLogsExtensions({
instanceId: logsInstance.guid,
region: logsInstance.location,
});
const logsExtensionDeploymentInstance = new ibm.LogsExtensionDeployment("logs_extension_deployment_instance", {
instanceId: logsInstance.guid,
region: logsInstance.location,
logsExtensionId: "IBMCloudKubernetes",
version: "1.0.0",
itemIds: [
"680b64c9-6cc3-40ca-b1c3-4f6f91470906",
"72a12a49-a659-484f-a230-0e7ab71600f1",
"9e6ced78-bea4-4580-b1d0-6f45b1e1ecd7",
"cd487925-85ea-4c52-b008-e121a470f22c",
],
applications: ["test-application"],
subsystems: ["test-subsystem"],
});
import pulumi
import pulumi_ibm as ibm
logs_extensions = ibm.get_logs_extensions(instance_id=logs_instance["guid"],
region=logs_instance["location"])
logs_extension_deployment_instance = ibm.LogsExtensionDeployment("logs_extension_deployment_instance",
instance_id=logs_instance["guid"],
region=logs_instance["location"],
logs_extension_id="IBMCloudKubernetes",
version="1.0.0",
item_ids=[
"680b64c9-6cc3-40ca-b1c3-4f6f91470906",
"72a12a49-a659-484f-a230-0e7ab71600f1",
"9e6ced78-bea4-4580-b1d0-6f45b1e1ecd7",
"cd487925-85ea-4c52-b008-e121a470f22c",
],
applications=["test-application"],
subsystems=["test-subsystem"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/v2/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.GetLogsExtensions(ctx, &ibm.GetLogsExtensionsArgs{
InstanceId: logsInstance.Guid,
Region: pulumi.StringRef(logsInstance.Location),
}, nil)
if err != nil {
return err
}
_, err = ibm.NewLogsExtensionDeployment(ctx, "logs_extension_deployment_instance", &ibm.LogsExtensionDeploymentArgs{
InstanceId: pulumi.Any(logsInstance.Guid),
Region: pulumi.Any(logsInstance.Location),
LogsExtensionId: pulumi.String("IBMCloudKubernetes"),
Version: pulumi.String("1.0.0"),
ItemIds: pulumi.StringArray{
pulumi.String("680b64c9-6cc3-40ca-b1c3-4f6f91470906"),
pulumi.String("72a12a49-a659-484f-a230-0e7ab71600f1"),
pulumi.String("9e6ced78-bea4-4580-b1d0-6f45b1e1ecd7"),
pulumi.String("cd487925-85ea-4c52-b008-e121a470f22c"),
},
Applications: pulumi.StringArray{
pulumi.String("test-application"),
},
Subsystems: pulumi.StringArray{
pulumi.String("test-subsystem"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var logsExtensions = Ibm.GetLogsExtensions.Invoke(new()
{
InstanceId = logsInstance.Guid,
Region = logsInstance.Location,
});
var logsExtensionDeploymentInstance = new Ibm.LogsExtensionDeployment("logs_extension_deployment_instance", new()
{
InstanceId = logsInstance.Guid,
Region = logsInstance.Location,
LogsExtensionId = "IBMCloudKubernetes",
Version = "1.0.0",
ItemIds = new[]
{
"680b64c9-6cc3-40ca-b1c3-4f6f91470906",
"72a12a49-a659-484f-a230-0e7ab71600f1",
"9e6ced78-bea4-4580-b1d0-6f45b1e1ecd7",
"cd487925-85ea-4c52-b008-e121a470f22c",
},
Applications = new[]
{
"test-application",
},
Subsystems = new[]
{
"test-subsystem",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetLogsExtensionsArgs;
import com.pulumi.ibm.LogsExtensionDeployment;
import com.pulumi.ibm.LogsExtensionDeploymentArgs;
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) {
final var logsExtensions = IbmFunctions.getLogsExtensions(GetLogsExtensionsArgs.builder()
.instanceId(logsInstance.guid())
.region(logsInstance.location())
.build());
var logsExtensionDeploymentInstance = new LogsExtensionDeployment("logsExtensionDeploymentInstance", LogsExtensionDeploymentArgs.builder()
.instanceId(logsInstance.guid())
.region(logsInstance.location())
.logsExtensionId("IBMCloudKubernetes")
.version("1.0.0")
.itemIds(
"680b64c9-6cc3-40ca-b1c3-4f6f91470906",
"72a12a49-a659-484f-a230-0e7ab71600f1",
"9e6ced78-bea4-4580-b1d0-6f45b1e1ecd7",
"cd487925-85ea-4c52-b008-e121a470f22c")
.applications("test-application")
.subsystems("test-subsystem")
.build());
}
}
resources:
logsExtensionDeploymentInstance:
type: ibm:LogsExtensionDeployment
name: logs_extension_deployment_instance
properties:
instanceId: ${logsInstance.guid}
region: ${logsInstance.location}
logsExtensionId: IBMCloudKubernetes
version: 1.0.0
itemIds: # values from [for item in data.ibm_logs_extension.extension.revisions[0].items : item.id]
- 680b64c9-6cc3-40ca-b1c3-4f6f91470906
- 72a12a49-a659-484f-a230-0e7ab71600f1
- 9e6ced78-bea4-4580-b1d0-6f45b1e1ecd7
- cd487925-85ea-4c52-b008-e121a470f22c
applications:
- test-application
subsystems:
- test-subsystem
variables:
logsExtensions:
fn::invoke:
function: ibm:getLogsExtensions
arguments:
instanceId: ${logsInstance.guid}
region: ${logsInstance.location}
Create LogsExtensionDeployment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LogsExtensionDeployment(name: string, args: LogsExtensionDeploymentArgs, opts?: CustomResourceOptions);@overload
def LogsExtensionDeployment(resource_name: str,
args: LogsExtensionDeploymentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LogsExtensionDeployment(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
item_ids: Optional[Sequence[str]] = None,
logs_extension_id: Optional[str] = None,
version: Optional[str] = None,
applications: Optional[Sequence[str]] = None,
endpoint_type: Optional[str] = None,
logs_extension_deployment_id: Optional[str] = None,
region: Optional[str] = None,
subsystems: Optional[Sequence[str]] = None)func NewLogsExtensionDeployment(ctx *Context, name string, args LogsExtensionDeploymentArgs, opts ...ResourceOption) (*LogsExtensionDeployment, error)public LogsExtensionDeployment(string name, LogsExtensionDeploymentArgs args, CustomResourceOptions? opts = null)
public LogsExtensionDeployment(String name, LogsExtensionDeploymentArgs args)
public LogsExtensionDeployment(String name, LogsExtensionDeploymentArgs args, CustomResourceOptions options)
type: ibm:LogsExtensionDeployment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args LogsExtensionDeploymentArgs
- 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 LogsExtensionDeploymentArgs
- 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 LogsExtensionDeploymentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LogsExtensionDeploymentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LogsExtensionDeploymentArgs
- 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 logsExtensionDeploymentResource = new Ibm.LogsExtensionDeployment("logsExtensionDeploymentResource", new()
{
InstanceId = "string",
ItemIds = new[]
{
"string",
},
LogsExtensionId = "string",
Version = "string",
Applications = new[]
{
"string",
},
EndpointType = "string",
LogsExtensionDeploymentId = "string",
Region = "string",
Subsystems = new[]
{
"string",
},
});
example, err := ibm.NewLogsExtensionDeployment(ctx, "logsExtensionDeploymentResource", &ibm.LogsExtensionDeploymentArgs{
InstanceId: pulumi.String("string"),
ItemIds: pulumi.StringArray{
pulumi.String("string"),
},
LogsExtensionId: pulumi.String("string"),
Version: pulumi.String("string"),
Applications: pulumi.StringArray{
pulumi.String("string"),
},
EndpointType: pulumi.String("string"),
LogsExtensionDeploymentId: pulumi.String("string"),
Region: pulumi.String("string"),
Subsystems: pulumi.StringArray{
pulumi.String("string"),
},
})
var logsExtensionDeploymentResource = new LogsExtensionDeployment("logsExtensionDeploymentResource", LogsExtensionDeploymentArgs.builder()
.instanceId("string")
.itemIds("string")
.logsExtensionId("string")
.version("string")
.applications("string")
.endpointType("string")
.logsExtensionDeploymentId("string")
.region("string")
.subsystems("string")
.build());
logs_extension_deployment_resource = ibm.LogsExtensionDeployment("logsExtensionDeploymentResource",
instance_id="string",
item_ids=["string"],
logs_extension_id="string",
version="string",
applications=["string"],
endpoint_type="string",
logs_extension_deployment_id="string",
region="string",
subsystems=["string"])
const logsExtensionDeploymentResource = new ibm.LogsExtensionDeployment("logsExtensionDeploymentResource", {
instanceId: "string",
itemIds: ["string"],
logsExtensionId: "string",
version: "string",
applications: ["string"],
endpointType: "string",
logsExtensionDeploymentId: "string",
region: "string",
subsystems: ["string"],
});
type: ibm:LogsExtensionDeployment
properties:
applications:
- string
endpointType: string
instanceId: string
itemIds:
- string
logsExtensionDeploymentId: string
logsExtensionId: string
region: string
subsystems:
- string
version: string
LogsExtensionDeployment 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 LogsExtensionDeployment resource accepts the following input properties:
- Instance
Id string - Cloud Logs Instance GUID.
- Item
Ids List<string> - The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- Logs
Extension stringId - The unique ID of extension to deploy.
- Version string
- The version of the Extension revision to deploy.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Applications List<string>
- Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - Logs
Extension stringDeployment Id - The unique identifier of the ibm.LogsExtensionDeployment resource.
- Region string
- Cloud Logs Instance Region.
- Subsystems List<string>
- Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Instance
Id string - Cloud Logs Instance GUID.
- Item
Ids []string - The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- Logs
Extension stringId - The unique ID of extension to deploy.
- Version string
- The version of the Extension revision to deploy.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Applications []string
- Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - Logs
Extension stringDeployment Id - The unique identifier of the ibm.LogsExtensionDeployment resource.
- Region string
- Cloud Logs Instance Region.
- Subsystems []string
- Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- instance
Id String - Cloud Logs Instance GUID.
- item
Ids List<String> - The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- logs
Extension StringId - The unique ID of extension to deploy.
- version String
- The version of the Extension revision to deploy.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- applications List<String>
- Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - logs
Extension StringDeployment Id - The unique identifier of the ibm.LogsExtensionDeployment resource.
- region String
- Cloud Logs Instance Region.
- subsystems List<String>
- Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- instance
Id string - Cloud Logs Instance GUID.
- item
Ids string[] - The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- logs
Extension stringId - The unique ID of extension to deploy.
- version string
- The version of the Extension revision to deploy.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- applications string[]
- Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - logs
Extension stringDeployment Id - The unique identifier of the ibm.LogsExtensionDeployment resource.
- region string
- Cloud Logs Instance Region.
- subsystems string[]
- Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- instance_
id str - Cloud Logs Instance GUID.
- item_
ids Sequence[str] - The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- logs_
extension_ strid - The unique ID of extension to deploy.
- version str
- The version of the Extension revision to deploy.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- applications Sequence[str]
- Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- endpoint_
type str - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - logs_
extension_ strdeployment_ id - The unique identifier of the ibm.LogsExtensionDeployment resource.
- region str
- Cloud Logs Instance Region.
- subsystems Sequence[str]
- Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- instance
Id String - Cloud Logs Instance GUID.
- item
Ids List<String> - The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- logs
Extension StringId - The unique ID of extension to deploy.
- version String
- The version of the Extension revision to deploy.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- applications List<String>
- Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - logs
Extension StringDeployment Id - The unique identifier of the ibm.LogsExtensionDeployment resource.
- region String
- Cloud Logs Instance Region.
- subsystems List<String>
- Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
Outputs
All input properties are implicitly available as output properties. Additionally, the LogsExtensionDeployment 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 LogsExtensionDeployment Resource
Get an existing LogsExtensionDeployment 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?: LogsExtensionDeploymentState, opts?: CustomResourceOptions): LogsExtensionDeployment@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
applications: Optional[Sequence[str]] = None,
endpoint_type: Optional[str] = None,
instance_id: Optional[str] = None,
item_ids: Optional[Sequence[str]] = None,
logs_extension_deployment_id: Optional[str] = None,
logs_extension_id: Optional[str] = None,
region: Optional[str] = None,
subsystems: Optional[Sequence[str]] = None,
version: Optional[str] = None) -> LogsExtensionDeploymentfunc GetLogsExtensionDeployment(ctx *Context, name string, id IDInput, state *LogsExtensionDeploymentState, opts ...ResourceOption) (*LogsExtensionDeployment, error)public static LogsExtensionDeployment Get(string name, Input<string> id, LogsExtensionDeploymentState? state, CustomResourceOptions? opts = null)public static LogsExtensionDeployment get(String name, Output<String> id, LogsExtensionDeploymentState state, CustomResourceOptions options)resources: _: type: ibm:LogsExtensionDeployment get: 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.
- Applications List<string>
- Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - Instance
Id string - Cloud Logs Instance GUID.
- Item
Ids List<string> - The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- Logs
Extension stringDeployment Id - The unique identifier of the ibm.LogsExtensionDeployment resource.
- Logs
Extension stringId - The unique ID of extension to deploy.
- Region string
- Cloud Logs Instance Region.
- Subsystems List<string>
- Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Version string
- The version of the Extension revision to deploy.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- Applications []string
- Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - Instance
Id string - Cloud Logs Instance GUID.
- Item
Ids []string - The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- Logs
Extension stringDeployment Id - The unique identifier of the ibm.LogsExtensionDeployment resource.
- Logs
Extension stringId - The unique ID of extension to deploy.
- Region string
- Cloud Logs Instance Region.
- Subsystems []string
- Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Version string
- The version of the Extension revision to deploy.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- applications List<String>
- Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - instance
Id String - Cloud Logs Instance GUID.
- item
Ids List<String> - The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- logs
Extension StringDeployment Id - The unique identifier of the ibm.LogsExtensionDeployment resource.
- logs
Extension StringId - The unique ID of extension to deploy.
- region String
- Cloud Logs Instance Region.
- subsystems List<String>
- Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- version String
- The version of the Extension revision to deploy.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- applications string[]
- Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- endpoint
Type string - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - instance
Id string - Cloud Logs Instance GUID.
- item
Ids string[] - The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- logs
Extension stringDeployment Id - The unique identifier of the ibm.LogsExtensionDeployment resource.
- logs
Extension stringId - The unique ID of extension to deploy.
- region string
- Cloud Logs Instance Region.
- subsystems string[]
- Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- version string
- The version of the Extension revision to deploy.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- applications Sequence[str]
- Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- endpoint_
type str - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - instance_
id str - Cloud Logs Instance GUID.
- item_
ids Sequence[str] - The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- logs_
extension_ strdeployment_ id - The unique identifier of the ibm.LogsExtensionDeployment resource.
- logs_
extension_ strid - The unique ID of extension to deploy.
- region str
- Cloud Logs Instance Region.
- subsystems Sequence[str]
- Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- version str
- The version of the Extension revision to deploy.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
- applications List<String>
- Applications that the Extension is deployed for. When this is empty, it is applied to all applications.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- endpoint
Type String - Cloud Logs Instance Endpoint type. Allowed values
publicandprivate. - instance
Id String - Cloud Logs Instance GUID.
- item
Ids List<String> - The list of Extension item IDs to deploy.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is1item.
- Constraints: The list items must match regular expression
- logs
Extension StringDeployment Id - The unique identifier of the ibm.LogsExtensionDeployment resource.
- logs
Extension StringId - The unique ID of extension to deploy.
- region String
- Cloud Logs Instance Region.
- subsystems List<String>
- Subsystems that the Extension is deployed. When this is empty, it is applied to all subsystems.
- Constraints: The list items must match regular expression
/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/. The maximum length is4096items. The minimum length is0items.
- Constraints: The list items must match regular expression
- version String
- The version of the Extension revision to deploy.
- Constraints: The maximum length is
4096characters. The minimum length is1character. The value must match regular expression/^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$/.
- Constraints: The maximum length is
Import
You can import the ibm_logs_extension_deployment resource by using id. You can import the ibm_logs_e2m resource by using id. id combination of region, instance_id and logs_extension_id.
Syntax
```sh $ pulumi import ibm:index/logsExtensionDeployment:LogsExtensionDeployment logs_extension_deployment < region >/< instance_id >/< logs_extension_id >; ```
Example
$ pulumi import ibm:index/logsExtensionDeployment:LogsExtensionDeployment logs_extension_deployment au-syd/df7f8517-b8be-4b4b-9eb4-617e81487d2e/IBMPostgreSQL
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibmTerraform Provider.
published on Thursday, Apr 16, 2026 by ibm-cloud
