ibm.EnDestinationAppConfiguration
Create, update, or delete a App Configuration destination by using IBM Cloud™ Event Notifications.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const acDestination = new ibm.EnDestinationAppConfiguration("acDestination", {
instanceGuid: ibm_resource_instance.en_terraform_test_resource.guid,
type: "app_configuration",
collectFailedEvents: false,
description: "Destination App Configuration for event notification",
config: {
params: {
type: "features",
crn: "crn:v1:bluemix:public:apprapp:us-south:a/4a74f2c31f554afc88156b73a1d577c6:dbxxxx93-0xxa-4xx5-axcf-c2faxxxd::",
featureId: "test",
environmentId: "stage",
},
},
});
import pulumi
import pulumi_ibm as ibm
ac_destination = ibm.EnDestinationAppConfiguration("acDestination",
instance_guid=ibm_resource_instance["en_terraform_test_resource"]["guid"],
type="app_configuration",
collect_failed_events=False,
description="Destination App Configuration for event notification",
config={
"params": {
"type": "features",
"crn": "crn:v1:bluemix:public:apprapp:us-south:a/4a74f2c31f554afc88156b73a1d577c6:dbxxxx93-0xxa-4xx5-axcf-c2faxxxd::",
"feature_id": "test",
"environment_id": "stage",
},
})
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.NewEnDestinationAppConfiguration(ctx, "acDestination", &ibm.EnDestinationAppConfigurationArgs{
InstanceGuid: pulumi.Any(ibm_resource_instance.En_terraform_test_resource.Guid),
Type: pulumi.String("app_configuration"),
CollectFailedEvents: pulumi.Bool(false),
Description: pulumi.String("Destination App Configuration for event notification"),
Config: &ibm.EnDestinationAppConfigurationConfigArgs{
Params: &ibm.EnDestinationAppConfigurationConfigParamsArgs{
Type: pulumi.String("features"),
Crn: pulumi.String("crn:v1:bluemix:public:apprapp:us-south:a/4a74f2c31f554afc88156b73a1d577c6:dbxxxx93-0xxa-4xx5-axcf-c2faxxxd::"),
FeatureId: pulumi.String("test"),
EnvironmentId: pulumi.String("stage"),
},
},
})
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 acDestination = new Ibm.EnDestinationAppConfiguration("acDestination", new()
{
InstanceGuid = ibm_resource_instance.En_terraform_test_resource.Guid,
Type = "app_configuration",
CollectFailedEvents = false,
Description = "Destination App Configuration for event notification",
Config = new Ibm.Inputs.EnDestinationAppConfigurationConfigArgs
{
Params = new Ibm.Inputs.EnDestinationAppConfigurationConfigParamsArgs
{
Type = "features",
Crn = "crn:v1:bluemix:public:apprapp:us-south:a/4a74f2c31f554afc88156b73a1d577c6:dbxxxx93-0xxa-4xx5-axcf-c2faxxxd::",
FeatureId = "test",
EnvironmentId = "stage",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.EnDestinationAppConfiguration;
import com.pulumi.ibm.EnDestinationAppConfigurationArgs;
import com.pulumi.ibm.inputs.EnDestinationAppConfigurationConfigArgs;
import com.pulumi.ibm.inputs.EnDestinationAppConfigurationConfigParamsArgs;
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 acDestination = new EnDestinationAppConfiguration("acDestination", EnDestinationAppConfigurationArgs.builder()
.instanceGuid(ibm_resource_instance.en_terraform_test_resource().guid())
.type("app_configuration")
.collectFailedEvents(false)
.description("Destination App Configuration for event notification")
.config(EnDestinationAppConfigurationConfigArgs.builder()
.params(EnDestinationAppConfigurationConfigParamsArgs.builder()
.type("features")
.crn("crn:v1:bluemix:public:apprapp:us-south:a/4a74f2c31f554afc88156b73a1d577c6:dbxxxx93-0xxa-4xx5-axcf-c2faxxxd::")
.featureId("test")
.environmentId("stage")
.build())
.build())
.build());
}
}
resources:
acDestination:
type: ibm:EnDestinationAppConfiguration
properties:
instanceGuid: ${ibm_resource_instance.en_terraform_test_resource.guid}
type: app_configuration
collectFailedEvents: false
description: Destination App Configuration for event notification
config:
params:
type: features
crn: 'crn:v1:bluemix:public:apprapp:us-south:a/4a74f2c31f554afc88156b73a1d577c6:dbxxxx93-0xxa-4xx5-axcf-c2faxxxd::'
featureId: test
environmentId: stage
Create EnDestinationAppConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EnDestinationAppConfiguration(name: string, args: EnDestinationAppConfigurationArgs, opts?: CustomResourceOptions);@overload
def EnDestinationAppConfiguration(resource_name: str,
args: EnDestinationAppConfigurationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EnDestinationAppConfiguration(resource_name: str,
opts: Optional[ResourceOptions] = None,
config: Optional[EnDestinationAppConfigurationConfigArgs] = None,
instance_guid: Optional[str] = None,
type: Optional[str] = None,
collect_failed_events: Optional[bool] = None,
description: Optional[str] = None,
en_destination_app_configuration_id: Optional[str] = None,
name: Optional[str] = None)func NewEnDestinationAppConfiguration(ctx *Context, name string, args EnDestinationAppConfigurationArgs, opts ...ResourceOption) (*EnDestinationAppConfiguration, error)public EnDestinationAppConfiguration(string name, EnDestinationAppConfigurationArgs args, CustomResourceOptions? opts = null)
public EnDestinationAppConfiguration(String name, EnDestinationAppConfigurationArgs args)
public EnDestinationAppConfiguration(String name, EnDestinationAppConfigurationArgs args, CustomResourceOptions options)
type: ibm:EnDestinationAppConfiguration
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 EnDestinationAppConfigurationArgs
- 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 EnDestinationAppConfigurationArgs
- 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 EnDestinationAppConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EnDestinationAppConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EnDestinationAppConfigurationArgs
- 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 enDestinationAppConfigurationResource = new Ibm.EnDestinationAppConfiguration("enDestinationAppConfigurationResource", new()
{
Config = new Ibm.Inputs.EnDestinationAppConfigurationConfigArgs
{
Params = new Ibm.Inputs.EnDestinationAppConfigurationConfigParamsArgs
{
Crn = "string",
EnvironmentId = "string",
FeatureId = "string",
Type = "string",
},
},
InstanceGuid = "string",
Type = "string",
CollectFailedEvents = false,
Description = "string",
EnDestinationAppConfigurationId = "string",
Name = "string",
});
example, err := ibm.NewEnDestinationAppConfiguration(ctx, "enDestinationAppConfigurationResource", &ibm.EnDestinationAppConfigurationArgs{
Config: &ibm.EnDestinationAppConfigurationConfigArgs{
Params: &ibm.EnDestinationAppConfigurationConfigParamsArgs{
Crn: pulumi.String("string"),
EnvironmentId: pulumi.String("string"),
FeatureId: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
InstanceGuid: pulumi.String("string"),
Type: pulumi.String("string"),
CollectFailedEvents: pulumi.Bool(false),
Description: pulumi.String("string"),
EnDestinationAppConfigurationId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var enDestinationAppConfigurationResource = new EnDestinationAppConfiguration("enDestinationAppConfigurationResource", EnDestinationAppConfigurationArgs.builder()
.config(EnDestinationAppConfigurationConfigArgs.builder()
.params(EnDestinationAppConfigurationConfigParamsArgs.builder()
.crn("string")
.environmentId("string")
.featureId("string")
.type("string")
.build())
.build())
.instanceGuid("string")
.type("string")
.collectFailedEvents(false)
.description("string")
.enDestinationAppConfigurationId("string")
.name("string")
.build());
en_destination_app_configuration_resource = ibm.EnDestinationAppConfiguration("enDestinationAppConfigurationResource",
config={
"params": {
"crn": "string",
"environment_id": "string",
"feature_id": "string",
"type": "string",
},
},
instance_guid="string",
type="string",
collect_failed_events=False,
description="string",
en_destination_app_configuration_id="string",
name="string")
const enDestinationAppConfigurationResource = new ibm.EnDestinationAppConfiguration("enDestinationAppConfigurationResource", {
config: {
params: {
crn: "string",
environmentId: "string",
featureId: "string",
type: "string",
},
},
instanceGuid: "string",
type: "string",
collectFailedEvents: false,
description: "string",
enDestinationAppConfigurationId: "string",
name: "string",
});
type: ibm:EnDestinationAppConfiguration
properties:
collectFailedEvents: false
config:
params:
crn: string
environmentId: string
featureId: string
type: string
description: string
enDestinationAppConfigurationId: string
instanceGuid: string
name: string
type: string
EnDestinationAppConfiguration 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 EnDestinationAppConfiguration resource accepts the following input properties:
- Config
En
Destination App Configuration Config Payload describing a destination configuration.
Nested scheme for config:
- Instance
Guid string - Unique identifier for IBM Cloud Event Notifications instance.
- Type string
- msteams.
- Collect
Failed boolEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- Description string
- The Destination description.
- En
Destination stringApp Configuration Id - (String) The unique identifier of the
ac_destination. - Name string
- The Destintion name.
- Config
En
Destination App Configuration Config Args Payload describing a destination configuration.
Nested scheme for config:
- Instance
Guid string - Unique identifier for IBM Cloud Event Notifications instance.
- Type string
- msteams.
- Collect
Failed boolEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- Description string
- The Destination description.
- En
Destination stringApp Configuration Id - (String) The unique identifier of the
ac_destination. - Name string
- The Destintion name.
- config
En
Destination App Configuration Config Payload describing a destination configuration.
Nested scheme for config:
- instance
Guid String - Unique identifier for IBM Cloud Event Notifications instance.
- type String
- msteams.
- collect
Failed BooleanEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- description String
- The Destination description.
- en
Destination StringApp Configuration Id - (String) The unique identifier of the
ac_destination. - name String
- The Destintion name.
- config
En
Destination App Configuration Config Payload describing a destination configuration.
Nested scheme for config:
- instance
Guid string - Unique identifier for IBM Cloud Event Notifications instance.
- type string
- msteams.
- collect
Failed booleanEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- description string
- The Destination description.
- en
Destination stringApp Configuration Id - (String) The unique identifier of the
ac_destination. - name string
- The Destintion name.
- config
En
Destination App Configuration Config Args Payload describing a destination configuration.
Nested scheme for config:
- instance_
guid str - Unique identifier for IBM Cloud Event Notifications instance.
- type str
- msteams.
- collect_
failed_ boolevents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- description str
- The Destination description.
- en_
destination_ strapp_ configuration_ id - (String) The unique identifier of the
ac_destination. - name str
- The Destintion name.
- config Property Map
Payload describing a destination configuration.
Nested scheme for config:
- instance
Guid String - Unique identifier for IBM Cloud Event Notifications instance.
- type String
- msteams.
- collect
Failed BooleanEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- description String
- The Destination description.
- en
Destination StringApp Configuration Id - (String) The unique identifier of the
ac_destination. - name String
- The Destintion name.
Outputs
All input properties are implicitly available as output properties. Additionally, the EnDestinationAppConfiguration resource produces the following output properties:
- Destination
Id string - (String) The unique identifier of the created destination.
- Id string
- The provider-assigned unique ID for this managed resource.
- Subscription
Count double - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0.
- Constraints: The minimum value is
- Subscription
Names List<string> - (List) List of subscriptions.
- Updated
At string - (String) Last updated time.
- Destination
Id string - (String) The unique identifier of the created destination.
- Id string
- The provider-assigned unique ID for this managed resource.
- Subscription
Count float64 - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0.
- Constraints: The minimum value is
- Subscription
Names []string - (List) List of subscriptions.
- Updated
At string - (String) Last updated time.
- destination
Id String - (String) The unique identifier of the created destination.
- id String
- The provider-assigned unique ID for this managed resource.
- subscription
Count Double - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0.
- Constraints: The minimum value is
- subscription
Names List<String> - (List) List of subscriptions.
- updated
At String - (String) Last updated time.
- destination
Id string - (String) The unique identifier of the created destination.
- id string
- The provider-assigned unique ID for this managed resource.
- subscription
Count number - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0.
- Constraints: The minimum value is
- subscription
Names string[] - (List) List of subscriptions.
- updated
At 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.
- Constraints: The minimum value is
- subscription_
names Sequence[str] - (List) List of subscriptions.
- updated_
at str - (String) Last updated time.
- destination
Id String - (String) The unique identifier of the created destination.
- id String
- The provider-assigned unique ID for this managed resource.
- subscription
Count Number - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0.
- Constraints: The minimum value is
- subscription
Names List<String> - (List) List of subscriptions.
- updated
At String - (String) Last updated time.
Look up Existing EnDestinationAppConfiguration Resource
Get an existing EnDestinationAppConfiguration 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?: EnDestinationAppConfigurationState, opts?: CustomResourceOptions): EnDestinationAppConfiguration@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
collect_failed_events: Optional[bool] = None,
config: Optional[EnDestinationAppConfigurationConfigArgs] = None,
description: Optional[str] = None,
destination_id: Optional[str] = None,
en_destination_app_configuration_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) -> EnDestinationAppConfigurationfunc GetEnDestinationAppConfiguration(ctx *Context, name string, id IDInput, state *EnDestinationAppConfigurationState, opts ...ResourceOption) (*EnDestinationAppConfiguration, error)public static EnDestinationAppConfiguration Get(string name, Input<string> id, EnDestinationAppConfigurationState? state, CustomResourceOptions? opts = null)public static EnDestinationAppConfiguration get(String name, Output<String> id, EnDestinationAppConfigurationState state, CustomResourceOptions options)resources: _: type: ibm:EnDestinationAppConfiguration 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.
- Collect
Failed boolEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- Config
En
Destination App Configuration Config Payload describing a destination configuration.
Nested scheme for config:
- Description string
- The Destination description.
- Destination
Id string - (String) The unique identifier of the created destination.
- En
Destination stringApp Configuration Id - (String) The unique identifier of the
ac_destination. - Instance
Guid string - Unique identifier for IBM Cloud Event Notifications instance.
- Name string
- The Destintion name.
- Subscription
Count double - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0.
- Constraints: The minimum value is
- Subscription
Names List<string> - (List) List of subscriptions.
- Type string
- msteams.
- Updated
At string - (String) Last updated time.
- Collect
Failed boolEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- Config
En
Destination App Configuration Config Args Payload describing a destination configuration.
Nested scheme for config:
- Description string
- The Destination description.
- Destination
Id string - (String) The unique identifier of the created destination.
- En
Destination stringApp Configuration Id - (String) The unique identifier of the
ac_destination. - Instance
Guid string - Unique identifier for IBM Cloud Event Notifications instance.
- Name string
- The Destintion name.
- Subscription
Count float64 - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0.
- Constraints: The minimum value is
- Subscription
Names []string - (List) List of subscriptions.
- Type string
- msteams.
- Updated
At string - (String) Last updated time.
- collect
Failed BooleanEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- config
En
Destination App Configuration Config Payload describing a destination configuration.
Nested scheme for config:
- description String
- The Destination description.
- destination
Id String - (String) The unique identifier of the created destination.
- en
Destination StringApp Configuration Id - (String) The unique identifier of the
ac_destination. - instance
Guid String - Unique identifier for IBM Cloud Event Notifications instance.
- name String
- The Destintion name.
- subscription
Count Double - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0.
- Constraints: The minimum value is
- subscription
Names List<String> - (List) List of subscriptions.
- type String
- msteams.
- updated
At String - (String) Last updated time.
- collect
Failed booleanEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- config
En
Destination App Configuration Config Payload describing a destination configuration.
Nested scheme for config:
- description string
- The Destination description.
- destination
Id string - (String) The unique identifier of the created destination.
- en
Destination stringApp Configuration Id - (String) The unique identifier of the
ac_destination. - instance
Guid string - Unique identifier for IBM Cloud Event Notifications instance.
- name string
- The Destintion name.
- subscription
Count number - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0.
- Constraints: The minimum value is
- subscription
Names string[] - (List) List of subscriptions.
- type string
- msteams.
- updated
At string - (String) Last updated time.
- collect_
failed_ boolevents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- config
En
Destination App Configuration Config Args 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_ strapp_ configuration_ id - (String) The unique identifier of the
ac_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.
- Constraints: The minimum value is
- subscription_
names Sequence[str] - (List) List of subscriptions.
- type str
- msteams.
- updated_
at str - (String) Last updated time.
- collect
Failed BooleanEvents - 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.
- destination
Id String - (String) The unique identifier of the created destination.
- en
Destination StringApp Configuration Id - (String) The unique identifier of the
ac_destination. - instance
Guid String - Unique identifier for IBM Cloud Event Notifications instance.
- name String
- The Destintion name.
- subscription
Count Number - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0.
- Constraints: The minimum value is
- subscription
Names List<String> - (List) List of subscriptions.
- type String
- msteams.
- updated
At String - (String) Last updated time.
Supporting Types
EnDestinationAppConfigurationConfig, EnDestinationAppConfigurationConfigArgs
- Params
En
Destination App Configuration Config Params - Nested scheme for params:
- Params
En
Destination App Configuration Config Params - Nested scheme for params:
- params
En
Destination App Configuration Config Params - Nested scheme for params:
- params
En
Destination App Configuration Config Params - Nested scheme for params:
- params
En
Destination App Configuration Config Params - Nested scheme for params:
- params Property Map
- Nested scheme for params:
EnDestinationAppConfigurationConfigParams, EnDestinationAppConfigurationConfigParamsArgs
- Crn string
- CRN of the App Configuration instance
- Environment
Id string - Environment ID of App Configuration
- Feature
Id string - Feature ID of App Configuration
- Type string
- msteams.
- Crn string
- CRN of the App Configuration instance
- Environment
Id string - Environment ID of App Configuration
- Feature
Id string - Feature ID of App Configuration
- Type string
- msteams.
- crn String
- CRN of the App Configuration instance
- environment
Id String - Environment ID of App Configuration
- feature
Id String - Feature ID of App Configuration
- type String
- msteams.
- crn string
- CRN of the App Configuration instance
- environment
Id string - Environment ID of App Configuration
- feature
Id string - Feature ID of App Configuration
- type string
- msteams.
- crn str
- CRN of the App Configuration instance
- environment_
id str - Environment ID of App Configuration
- feature_
id str - Feature ID of App Configuration
- type str
- msteams.
- crn String
- CRN of the App Configuration instance
- environment
Id String - Environment ID of App Configuration
- feature
Id String - Feature ID of App Configuration
- type String
- msteams.
Import
You can import the ibm_en_destination_app_configuration 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/enDestinationAppConfiguration:EnDestinationAppConfiguration ac_destination <instance_guid>/<destination_id>
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.
