1. Packages
  2. Ibm Provider
  3. API Docs
  4. EnDestinationSn
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.EnDestinationSn

Explore with Pulumi AI

Create, update, or delete a servicenow destination by using IBM Cloud™ Event Notifications.

Example Usage

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

const servicenowEnDestination = new ibm.EnDestinationSn("servicenowEnDestination", {
    instanceGuid: ibm_resource_instance.en_terraform_test_resource.guid,
    type: "servicenow",
    collectFailedEvents: false,
    description: "Destination servicenow for event notification",
    config: {
        params: {
            clientId: "321efc4f9c974b03d0fd959a81d8d8e8fyeyee",
            clientSecret: "636gdkgvfwepefy9we[]",
            username: "testservicenowcredsuser",
            password: "testservicenowpassword",
            instanceName: "dhivhiifvgfewgewf",
        },
    },
});
Copy
import pulumi
import pulumi_ibm as ibm

servicenow_en_destination = ibm.EnDestinationSn("servicenowEnDestination",
    instance_guid=ibm_resource_instance["en_terraform_test_resource"]["guid"],
    type="servicenow",
    collect_failed_events=False,
    description="Destination servicenow for event notification",
    config={
        "params": {
            "client_id": "321efc4f9c974b03d0fd959a81d8d8e8fyeyee",
            "client_secret": "636gdkgvfwepefy9we[]",
            "username": "testservicenowcredsuser",
            "password": "testservicenowpassword",
            "instance_name": "dhivhiifvgfewgewf",
        },
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ibm.NewEnDestinationSn(ctx, "servicenowEnDestination", &ibm.EnDestinationSnArgs{
			InstanceGuid:        pulumi.Any(ibm_resource_instance.En_terraform_test_resource.Guid),
			Type:                pulumi.String("servicenow"),
			CollectFailedEvents: pulumi.Bool(false),
			Description:         pulumi.String("Destination servicenow for event notification"),
			Config: &ibm.EnDestinationSnConfigArgs{
				Params: &ibm.EnDestinationSnConfigParamsArgs{
					ClientId:     pulumi.String("321efc4f9c974b03d0fd959a81d8d8e8fyeyee"),
					ClientSecret: pulumi.String("636gdkgvfwepefy9we[]"),
					Username:     pulumi.String("testservicenowcredsuser"),
					Password:     pulumi.String("testservicenowpassword"),
					InstanceName: pulumi.String("dhivhiifvgfewgewf"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;

return await Deployment.RunAsync(() => 
{
    var servicenowEnDestination = new Ibm.EnDestinationSn("servicenowEnDestination", new()
    {
        InstanceGuid = ibm_resource_instance.En_terraform_test_resource.Guid,
        Type = "servicenow",
        CollectFailedEvents = false,
        Description = "Destination servicenow for event notification",
        Config = new Ibm.Inputs.EnDestinationSnConfigArgs
        {
            Params = new Ibm.Inputs.EnDestinationSnConfigParamsArgs
            {
                ClientId = "321efc4f9c974b03d0fd959a81d8d8e8fyeyee",
                ClientSecret = "636gdkgvfwepefy9we[]",
                Username = "testservicenowcredsuser",
                Password = "testservicenowpassword",
                InstanceName = "dhivhiifvgfewgewf",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.EnDestinationSn;
import com.pulumi.ibm.EnDestinationSnArgs;
import com.pulumi.ibm.inputs.EnDestinationSnConfigArgs;
import com.pulumi.ibm.inputs.EnDestinationSnConfigParamsArgs;
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 servicenowEnDestination = new EnDestinationSn("servicenowEnDestination", EnDestinationSnArgs.builder()
            .instanceGuid(ibm_resource_instance.en_terraform_test_resource().guid())
            .type("servicenow")
            .collectFailedEvents(false)
            .description("Destination servicenow for event notification")
            .config(EnDestinationSnConfigArgs.builder()
                .params(EnDestinationSnConfigParamsArgs.builder()
                    .clientId("321efc4f9c974b03d0fd959a81d8d8e8fyeyee")
                    .clientSecret("636gdkgvfwepefy9we[]")
                    .username("testservicenowcredsuser")
                    .password("testservicenowpassword")
                    .instanceName("dhivhiifvgfewgewf")
                    .build())
                .build())
            .build());

    }
}
Copy
resources:
  servicenowEnDestination:
    type: ibm:EnDestinationSn
    properties:
      instanceGuid: ${ibm_resource_instance.en_terraform_test_resource.guid}
      type: servicenow
      collectFailedEvents: false
      description: Destination servicenow for event notification
      config:
        params:
          clientId: 321efc4f9c974b03d0fd959a81d8d8e8fyeyee
          clientSecret: 636gdkgvfwepefy9we[]
          username: testservicenowcredsuser
          password: testservicenowpassword
          instanceName: dhivhiifvgfewgewf
Copy

Create EnDestinationSn Resource

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

Constructor syntax

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

@overload
def EnDestinationSn(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    instance_guid: Optional[str] = None,
                    type: Optional[str] = None,
                    collect_failed_events: Optional[bool] = None,
                    config: Optional[EnDestinationSnConfigArgs] = None,
                    description: Optional[str] = None,
                    en_destination_sn_id: Optional[str] = None,
                    name: Optional[str] = None)
func NewEnDestinationSn(ctx *Context, name string, args EnDestinationSnArgs, opts ...ResourceOption) (*EnDestinationSn, error)
public EnDestinationSn(string name, EnDestinationSnArgs args, CustomResourceOptions? opts = null)
public EnDestinationSn(String name, EnDestinationSnArgs args)
public EnDestinationSn(String name, EnDestinationSnArgs args, CustomResourceOptions options)
type: ibm:EnDestinationSn
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 This property is required. EnDestinationSnArgs
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 This property is required. EnDestinationSnArgs
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 This property is required. EnDestinationSnArgs
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 This property is required. EnDestinationSnArgs
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. EnDestinationSnArgs
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 enDestinationSnResource = new Ibm.EnDestinationSn("enDestinationSnResource", new()
{
    InstanceGuid = "string",
    Type = "string",
    CollectFailedEvents = false,
    Config = new Ibm.Inputs.EnDestinationSnConfigArgs
    {
        Params = new Ibm.Inputs.EnDestinationSnConfigParamsArgs
        {
            ClientId = "string",
            ClientSecret = "string",
            InstanceName = "string",
            Password = "string",
            Username = "string",
        },
    },
    Description = "string",
    EnDestinationSnId = "string",
    Name = "string",
});
Copy
example, err := ibm.NewEnDestinationSn(ctx, "enDestinationSnResource", &ibm.EnDestinationSnArgs{
	InstanceGuid:        pulumi.String("string"),
	Type:                pulumi.String("string"),
	CollectFailedEvents: pulumi.Bool(false),
	Config: &ibm.EnDestinationSnConfigArgs{
		Params: &ibm.EnDestinationSnConfigParamsArgs{
			ClientId:     pulumi.String("string"),
			ClientSecret: pulumi.String("string"),
			InstanceName: pulumi.String("string"),
			Password:     pulumi.String("string"),
			Username:     pulumi.String("string"),
		},
	},
	Description:       pulumi.String("string"),
	EnDestinationSnId: pulumi.String("string"),
	Name:              pulumi.String("string"),
})
Copy
var enDestinationSnResource = new EnDestinationSn("enDestinationSnResource", EnDestinationSnArgs.builder()
    .instanceGuid("string")
    .type("string")
    .collectFailedEvents(false)
    .config(EnDestinationSnConfigArgs.builder()
        .params(EnDestinationSnConfigParamsArgs.builder()
            .clientId("string")
            .clientSecret("string")
            .instanceName("string")
            .password("string")
            .username("string")
            .build())
        .build())
    .description("string")
    .enDestinationSnId("string")
    .name("string")
    .build());
Copy
en_destination_sn_resource = ibm.EnDestinationSn("enDestinationSnResource",
    instance_guid="string",
    type="string",
    collect_failed_events=False,
    config={
        "params": {
            "client_id": "string",
            "client_secret": "string",
            "instance_name": "string",
            "password": "string",
            "username": "string",
        },
    },
    description="string",
    en_destination_sn_id="string",
    name="string")
Copy
const enDestinationSnResource = new ibm.EnDestinationSn("enDestinationSnResource", {
    instanceGuid: "string",
    type: "string",
    collectFailedEvents: false,
    config: {
        params: {
            clientId: "string",
            clientSecret: "string",
            instanceName: "string",
            password: "string",
            username: "string",
        },
    },
    description: "string",
    enDestinationSnId: "string",
    name: "string",
});
Copy
type: ibm:EnDestinationSn
properties:
    collectFailedEvents: false
    config:
        params:
            clientId: string
            clientSecret: string
            instanceName: string
            password: string
            username: string
    description: string
    enDestinationSnId: string
    instanceGuid: string
    name: string
    type: string
Copy

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

InstanceGuid This property is required. string
Unique identifier for IBM Cloud Event Notifications instance.
Type This property is required. string
pagerduty.
CollectFailedEvents bool
Toggle switch to enable collect failed event in Cloud Object Storage bucket.
Config EnDestinationSnConfig

Payload describing a destination configuration.

Nested scheme for config:

Description string
The Destination description.
EnDestinationSnId string
(String) The unique identifier of the servicenow_en_destination.
Name string
The Destintion name.
InstanceGuid This property is required. string
Unique identifier for IBM Cloud Event Notifications instance.
Type This property is required. string
pagerduty.
CollectFailedEvents bool
Toggle switch to enable collect failed event in Cloud Object Storage bucket.
Config EnDestinationSnConfigArgs

Payload describing a destination configuration.

Nested scheme for config:

Description string
The Destination description.
EnDestinationSnId string
(String) The unique identifier of the servicenow_en_destination.
Name string
The Destintion name.
instanceGuid This property is required. String
Unique identifier for IBM Cloud Event Notifications instance.
type This property is required. String
pagerduty.
collectFailedEvents Boolean
Toggle switch to enable collect failed event in Cloud Object Storage bucket.
config EnDestinationSnConfig

Payload describing a destination configuration.

Nested scheme for config:

description String
The Destination description.
enDestinationSnId String
(String) The unique identifier of the servicenow_en_destination.
name String
The Destintion name.
instanceGuid This property is required. string
Unique identifier for IBM Cloud Event Notifications instance.
type This property is required. string
pagerduty.
collectFailedEvents boolean
Toggle switch to enable collect failed event in Cloud Object Storage bucket.
config EnDestinationSnConfig

Payload describing a destination configuration.

Nested scheme for config:

description string
The Destination description.
enDestinationSnId string
(String) The unique identifier of the servicenow_en_destination.
name string
The Destintion name.
instance_guid This property is required. str
Unique identifier for IBM Cloud Event Notifications instance.
type This property is required. str
pagerduty.
collect_failed_events bool
Toggle switch to enable collect failed event in Cloud Object Storage bucket.
config EnDestinationSnConfigArgs

Payload describing a destination configuration.

Nested scheme for config:

description str
The Destination description.
en_destination_sn_id str
(String) The unique identifier of the servicenow_en_destination.
name str
The Destintion name.
instanceGuid This property is required. String
Unique identifier for IBM Cloud Event Notifications instance.
type This property is required. String
pagerduty.
collectFailedEvents Boolean
Toggle switch to enable collect failed event in Cloud Object Storage bucket.
config Property Map

Payload describing a destination configuration.

Nested scheme for config:

description String
The Destination description.
enDestinationSnId String
(String) The unique identifier of the servicenow_en_destination.
name String
The Destintion name.

Outputs

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

DestinationId string
(String) The unique identifier of the created destination.
Id string
The provider-assigned unique ID for this managed resource.
SubscriptionCount double
(Integer) Number of subscriptions.

  • Constraints: The minimum value is 0.
SubscriptionNames List<string>
(List) List of subscriptions.
UpdatedAt string
(String) Last updated time.
DestinationId string
(String) The unique identifier of the created destination.
Id string
The provider-assigned unique ID for this managed resource.
SubscriptionCount float64
(Integer) Number of subscriptions.

  • Constraints: The minimum value is 0.
SubscriptionNames []string
(List) List of subscriptions.
UpdatedAt string
(String) Last updated time.
destinationId String
(String) The unique identifier of the created destination.
id String
The provider-assigned unique ID for this managed resource.
subscriptionCount Double
(Integer) Number of subscriptions.

  • Constraints: The minimum value is 0.
subscriptionNames List<String>
(List) List of subscriptions.
updatedAt String
(String) Last updated time.
destinationId string
(String) The unique identifier of the created destination.
id string
The provider-assigned unique ID for this managed resource.
subscriptionCount number
(Integer) Number of subscriptions.

  • Constraints: The minimum value is 0.
subscriptionNames string[]
(List) List of subscriptions.
updatedAt string
(String) Last updated time.
destination_id str
(String) The unique identifier of the created destination.
id str
The provider-assigned unique ID for this managed resource.
subscription_count float
(Integer) Number of subscriptions.

  • Constraints: The minimum value is 0.
subscription_names Sequence[str]
(List) List of subscriptions.
updated_at str
(String) Last updated time.
destinationId String
(String) The unique identifier of the created destination.
id String
The provider-assigned unique ID for this managed resource.
subscriptionCount Number
(Integer) Number of subscriptions.

  • Constraints: The minimum value is 0.
subscriptionNames List<String>
(List) List of subscriptions.
updatedAt String
(String) Last updated time.

Look up Existing EnDestinationSn Resource

Get an existing EnDestinationSn 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?: EnDestinationSnState, opts?: CustomResourceOptions): EnDestinationSn
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        collect_failed_events: Optional[bool] = None,
        config: Optional[EnDestinationSnConfigArgs] = None,
        description: Optional[str] = None,
        destination_id: Optional[str] = None,
        en_destination_sn_id: Optional[str] = None,
        instance_guid: Optional[str] = None,
        name: Optional[str] = None,
        subscription_count: Optional[float] = None,
        subscription_names: Optional[Sequence[str]] = None,
        type: Optional[str] = None,
        updated_at: Optional[str] = None) -> EnDestinationSn
func GetEnDestinationSn(ctx *Context, name string, id IDInput, state *EnDestinationSnState, opts ...ResourceOption) (*EnDestinationSn, error)
public static EnDestinationSn Get(string name, Input<string> id, EnDestinationSnState? state, CustomResourceOptions? opts = null)
public static EnDestinationSn get(String name, Output<String> id, EnDestinationSnState state, CustomResourceOptions options)
resources:  _:    type: ibm:EnDestinationSn    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:
CollectFailedEvents bool
Toggle switch to enable collect failed event in Cloud Object Storage bucket.
Config EnDestinationSnConfig

Payload describing a destination configuration.

Nested scheme for config:

Description string
The Destination description.
DestinationId string
(String) The unique identifier of the created destination.
EnDestinationSnId string
(String) The unique identifier of the servicenow_en_destination.
InstanceGuid string
Unique identifier for IBM Cloud Event Notifications instance.
Name string
The Destintion name.
SubscriptionCount double
(Integer) Number of subscriptions.

  • Constraints: The minimum value is 0.
SubscriptionNames List<string>
(List) List of subscriptions.
Type string
pagerduty.
UpdatedAt string
(String) Last updated time.
CollectFailedEvents bool
Toggle switch to enable collect failed event in Cloud Object Storage bucket.
Config EnDestinationSnConfigArgs

Payload describing a destination configuration.

Nested scheme for config:

Description string
The Destination description.
DestinationId string
(String) The unique identifier of the created destination.
EnDestinationSnId string
(String) The unique identifier of the servicenow_en_destination.
InstanceGuid string
Unique identifier for IBM Cloud Event Notifications instance.
Name string
The Destintion name.
SubscriptionCount float64
(Integer) Number of subscriptions.

  • Constraints: The minimum value is 0.
SubscriptionNames []string
(List) List of subscriptions.
Type string
pagerduty.
UpdatedAt string
(String) Last updated time.
collectFailedEvents Boolean
Toggle switch to enable collect failed event in Cloud Object Storage bucket.
config EnDestinationSnConfig

Payload describing a destination configuration.

Nested scheme for config:

description String
The Destination description.
destinationId String
(String) The unique identifier of the created destination.
enDestinationSnId String
(String) The unique identifier of the servicenow_en_destination.
instanceGuid String
Unique identifier for IBM Cloud Event Notifications instance.
name String
The Destintion name.
subscriptionCount Double
(Integer) Number of subscriptions.

  • Constraints: The minimum value is 0.
subscriptionNames List<String>
(List) List of subscriptions.
type String
pagerduty.
updatedAt String
(String) Last updated time.
collectFailedEvents boolean
Toggle switch to enable collect failed event in Cloud Object Storage bucket.
config EnDestinationSnConfig

Payload describing a destination configuration.

Nested scheme for config:

description string
The Destination description.
destinationId string
(String) The unique identifier of the created destination.
enDestinationSnId string
(String) The unique identifier of the servicenow_en_destination.
instanceGuid string
Unique identifier for IBM Cloud Event Notifications instance.
name string
The Destintion name.
subscriptionCount number
(Integer) Number of subscriptions.

  • Constraints: The minimum value is 0.
subscriptionNames string[]
(List) List of subscriptions.
type string
pagerduty.
updatedAt string
(String) Last updated time.
collect_failed_events bool
Toggle switch to enable collect failed event in Cloud Object Storage bucket.
config EnDestinationSnConfigArgs

Payload describing a destination configuration.

Nested scheme for config:

description str
The Destination description.
destination_id str
(String) The unique identifier of the created destination.
en_destination_sn_id str
(String) The unique identifier of the servicenow_en_destination.
instance_guid str
Unique identifier for IBM Cloud Event Notifications instance.
name str
The Destintion name.
subscription_count float
(Integer) Number of subscriptions.

  • Constraints: The minimum value is 0.
subscription_names Sequence[str]
(List) List of subscriptions.
type str
pagerduty.
updated_at str
(String) Last updated time.
collectFailedEvents Boolean
Toggle switch to enable collect failed event in Cloud Object Storage bucket.
config Property Map

Payload describing a destination configuration.

Nested scheme for config:

description String
The Destination description.
destinationId String
(String) The unique identifier of the created destination.
enDestinationSnId String
(String) The unique identifier of the servicenow_en_destination.
instanceGuid String
Unique identifier for IBM Cloud Event Notifications instance.
name String
The Destintion name.
subscriptionCount Number
(Integer) Number of subscriptions.

  • Constraints: The minimum value is 0.
subscriptionNames List<String>
(List) List of subscriptions.
type String
pagerduty.
updatedAt String
(String) Last updated time.

Supporting Types

EnDestinationSnConfig
, EnDestinationSnConfigArgs

Params EnDestinationSnConfigParams
Nested scheme for params:
Params EnDestinationSnConfigParams
Nested scheme for params:
params EnDestinationSnConfigParams
Nested scheme for params:
params EnDestinationSnConfigParams
Nested scheme for params:
params EnDestinationSnConfigParams
Nested scheme for params:
params Property Map
Nested scheme for params:

EnDestinationSnConfigParams
, EnDestinationSnConfigParamsArgs

ClientId string
ClientID for the ServiceNow account oauth
ClientSecret string
ClientSecret for the ServiceNow account oauth
InstanceName string
Instance name for ServiceNow account.
Password string
Password for ServiceNow account REST API.
Username string
Username for ServiceNow account REST API
ClientId string
ClientID for the ServiceNow account oauth
ClientSecret string
ClientSecret for the ServiceNow account oauth
InstanceName string
Instance name for ServiceNow account.
Password string
Password for ServiceNow account REST API.
Username string
Username for ServiceNow account REST API
clientId String
ClientID for the ServiceNow account oauth
clientSecret String
ClientSecret for the ServiceNow account oauth
instanceName String
Instance name for ServiceNow account.
password String
Password for ServiceNow account REST API.
username String
Username for ServiceNow account REST API
clientId string
ClientID for the ServiceNow account oauth
clientSecret string
ClientSecret for the ServiceNow account oauth
instanceName string
Instance name for ServiceNow account.
password string
Password for ServiceNow account REST API.
username string
Username for ServiceNow account REST API
client_id str
ClientID for the ServiceNow account oauth
client_secret str
ClientSecret for the ServiceNow account oauth
instance_name str
Instance name for ServiceNow account.
password str
Password for ServiceNow account REST API.
username str
Username for ServiceNow account REST API
clientId String
ClientID for the ServiceNow account oauth
clientSecret String
ClientSecret for the ServiceNow account oauth
instanceName String
Instance name for ServiceNow account.
password String
Password for ServiceNow account REST API.
username String
Username for ServiceNow account REST API

Import

You can import the ibm_en_destination_sn resource by using id.

The id property can be formed from instance_guid, and destination_id in the following format:

<instance_guid>/<destination_id>

  • instance_guid: A string. Unique identifier for IBM Cloud Event Notifications instance.

  • destination_id: A string. Unique identifier for Destination.

Example

$ pulumi import ibm:index/enDestinationSn:EnDestinationSn servicenow_en_destination <instance_guid>/<destination_id>
Copy

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 ibm Terraform Provider.