opentelekomcloud.SdrsProtectiongroupV1
Explore with Pulumi AI
Up-to-date reference of API arguments for SDRS protection group you can get at documentation portal
Manages a SDRS protection group resource within OpenTelekomCloud.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const dom1 = opentelekomcloud.getSdrsDomainV1({});
const group1 = new opentelekomcloud.SdrsProtectiongroupV1("group1", {
description: "test description",
sourceAvailabilityZone: "eu-de-01",
targetAvailabilityZone: "eu-de-02",
domainId: dom1.then(dom1 => dom1.id),
sourceVpcId: _var.vpc_id,
drType: "migration",
enable: true,
});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
dom1 = opentelekomcloud.get_sdrs_domain_v1()
group1 = opentelekomcloud.SdrsProtectiongroupV1("group1",
description="test description",
source_availability_zone="eu-de-01",
target_availability_zone="eu-de-02",
domain_id=dom1.id,
source_vpc_id=var["vpc_id"],
dr_type="migration",
enable=True)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
dom1, err := opentelekomcloud.GetSdrsDomainV1(ctx, &opentelekomcloud.GetSdrsDomainV1Args{}, nil)
if err != nil {
return err
}
_, err = opentelekomcloud.NewSdrsProtectiongroupV1(ctx, "group1", &opentelekomcloud.SdrsProtectiongroupV1Args{
Description: pulumi.String("test description"),
SourceAvailabilityZone: pulumi.String("eu-de-01"),
TargetAvailabilityZone: pulumi.String("eu-de-02"),
DomainId: pulumi.String(dom1.Id),
SourceVpcId: pulumi.Any(_var.Vpc_id),
DrType: pulumi.String("migration"),
Enable: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opentelekomcloud = Pulumi.Opentelekomcloud;
return await Deployment.RunAsync(() =>
{
var dom1 = Opentelekomcloud.GetSdrsDomainV1.Invoke();
var group1 = new Opentelekomcloud.SdrsProtectiongroupV1("group1", new()
{
Description = "test description",
SourceAvailabilityZone = "eu-de-01",
TargetAvailabilityZone = "eu-de-02",
DomainId = dom1.Apply(getSdrsDomainV1Result => getSdrsDomainV1Result.Id),
SourceVpcId = @var.Vpc_id,
DrType = "migration",
Enable = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.OpentelekomcloudFunctions;
import com.pulumi.opentelekomcloud.inputs.GetSdrsDomainV1Args;
import com.pulumi.opentelekomcloud.SdrsProtectiongroupV1;
import com.pulumi.opentelekomcloud.SdrsProtectiongroupV1Args;
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 dom1 = OpentelekomcloudFunctions.getSdrsDomainV1();
var group1 = new SdrsProtectiongroupV1("group1", SdrsProtectiongroupV1Args.builder()
.description("test description")
.sourceAvailabilityZone("eu-de-01")
.targetAvailabilityZone("eu-de-02")
.domainId(dom1.applyValue(getSdrsDomainV1Result -> getSdrsDomainV1Result.id()))
.sourceVpcId(var_.vpc_id())
.drType("migration")
.enable(true)
.build());
}
}
resources:
group1:
type: opentelekomcloud:SdrsProtectiongroupV1
properties:
description: test description
sourceAvailabilityZone: eu-de-01
targetAvailabilityZone: eu-de-02
domainId: ${dom1.id}
sourceVpcId: ${var.vpc_id}
drType: migration
enable: true
variables:
dom1:
fn::invoke:
function: opentelekomcloud:getSdrsDomainV1
arguments: {}
Create SdrsProtectiongroupV1 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SdrsProtectiongroupV1(name: string, args: SdrsProtectiongroupV1Args, opts?: CustomResourceOptions);
@overload
def SdrsProtectiongroupV1(resource_name: str,
args: SdrsProtectiongroupV1Args,
opts: Optional[ResourceOptions] = None)
@overload
def SdrsProtectiongroupV1(resource_name: str,
opts: Optional[ResourceOptions] = None,
domain_id: Optional[str] = None,
source_availability_zone: Optional[str] = None,
source_vpc_id: Optional[str] = None,
target_availability_zone: Optional[str] = None,
description: Optional[str] = None,
dr_type: Optional[str] = None,
enable: Optional[bool] = None,
name: Optional[str] = None,
sdrs_protectiongroup_v1_id: Optional[str] = None,
timeouts: Optional[SdrsProtectiongroupV1TimeoutsArgs] = None)
func NewSdrsProtectiongroupV1(ctx *Context, name string, args SdrsProtectiongroupV1Args, opts ...ResourceOption) (*SdrsProtectiongroupV1, error)
public SdrsProtectiongroupV1(string name, SdrsProtectiongroupV1Args args, CustomResourceOptions? opts = null)
public SdrsProtectiongroupV1(String name, SdrsProtectiongroupV1Args args)
public SdrsProtectiongroupV1(String name, SdrsProtectiongroupV1Args args, CustomResourceOptions options)
type: opentelekomcloud:SdrsProtectiongroupV1
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 SdrsProtectiongroupV1Args
- 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 SdrsProtectiongroupV1Args
- 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 SdrsProtectiongroupV1Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SdrsProtectiongroupV1Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SdrsProtectiongroupV1Args
- 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 sdrsProtectiongroupV1Resource = new Opentelekomcloud.SdrsProtectiongroupV1("sdrsProtectiongroupV1Resource", new()
{
DomainId = "string",
SourceAvailabilityZone = "string",
SourceVpcId = "string",
TargetAvailabilityZone = "string",
Description = "string",
DrType = "string",
Enable = false,
Name = "string",
SdrsProtectiongroupV1Id = "string",
Timeouts = new Opentelekomcloud.Inputs.SdrsProtectiongroupV1TimeoutsArgs
{
Create = "string",
Delete = "string",
},
});
example, err := opentelekomcloud.NewSdrsProtectiongroupV1(ctx, "sdrsProtectiongroupV1Resource", &opentelekomcloud.SdrsProtectiongroupV1Args{
DomainId: pulumi.String("string"),
SourceAvailabilityZone: pulumi.String("string"),
SourceVpcId: pulumi.String("string"),
TargetAvailabilityZone: pulumi.String("string"),
Description: pulumi.String("string"),
DrType: pulumi.String("string"),
Enable: pulumi.Bool(false),
Name: pulumi.String("string"),
SdrsProtectiongroupV1Id: pulumi.String("string"),
Timeouts: &opentelekomcloud.SdrsProtectiongroupV1TimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
})
var sdrsProtectiongroupV1Resource = new SdrsProtectiongroupV1("sdrsProtectiongroupV1Resource", SdrsProtectiongroupV1Args.builder()
.domainId("string")
.sourceAvailabilityZone("string")
.sourceVpcId("string")
.targetAvailabilityZone("string")
.description("string")
.drType("string")
.enable(false)
.name("string")
.sdrsProtectiongroupV1Id("string")
.timeouts(SdrsProtectiongroupV1TimeoutsArgs.builder()
.create("string")
.delete("string")
.build())
.build());
sdrs_protectiongroup_v1_resource = opentelekomcloud.SdrsProtectiongroupV1("sdrsProtectiongroupV1Resource",
domain_id="string",
source_availability_zone="string",
source_vpc_id="string",
target_availability_zone="string",
description="string",
dr_type="string",
enable=False,
name="string",
sdrs_protectiongroup_v1_id="string",
timeouts={
"create": "string",
"delete": "string",
})
const sdrsProtectiongroupV1Resource = new opentelekomcloud.SdrsProtectiongroupV1("sdrsProtectiongroupV1Resource", {
domainId: "string",
sourceAvailabilityZone: "string",
sourceVpcId: "string",
targetAvailabilityZone: "string",
description: "string",
drType: "string",
enable: false,
name: "string",
sdrsProtectiongroupV1Id: "string",
timeouts: {
create: "string",
"delete": "string",
},
});
type: opentelekomcloud:SdrsProtectiongroupV1
properties:
description: string
domainId: string
drType: string
enable: false
name: string
sdrsProtectiongroupV1Id: string
sourceAvailabilityZone: string
sourceVpcId: string
targetAvailabilityZone: string
timeouts:
create: string
delete: string
SdrsProtectiongroupV1 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 SdrsProtectiongroupV1 resource accepts the following input properties:
- Domain
Id string - Specifies the ID of an
active-active domain
. Changing this creates a new group. Anactive-active domain
id can be extracted fromdata/opentelekomcloud_sdrs_domain_v1
and shouldn't be confused with tenantdomain
. - Source
Availability stringZone - Specifies the source AZ of a protection group. Changing this creates a new group.
- Source
Vpc stringId - Specifies the ID of the source VPC. Changing this creates a new group.
- Target
Availability stringZone - Specifies the target AZ of a protection group. Changing this creates a new group.
- Description string
- The description of a protection group. Changing this creates a new group.
- Dr
Type string - Specifies the deployment model. The default value is migration indicating migration within a VPC. Changing this creates a new group.
- Enable bool
- Enables or disables the Protection group.
- Name string
- The name of a protection group.
- Sdrs
Protectiongroup stringV1Id - (String) ID of the protection group.
- Timeouts
Sdrs
Protectiongroup V1Timeouts
- Domain
Id string - Specifies the ID of an
active-active domain
. Changing this creates a new group. Anactive-active domain
id can be extracted fromdata/opentelekomcloud_sdrs_domain_v1
and shouldn't be confused with tenantdomain
. - Source
Availability stringZone - Specifies the source AZ of a protection group. Changing this creates a new group.
- Source
Vpc stringId - Specifies the ID of the source VPC. Changing this creates a new group.
- Target
Availability stringZone - Specifies the target AZ of a protection group. Changing this creates a new group.
- Description string
- The description of a protection group. Changing this creates a new group.
- Dr
Type string - Specifies the deployment model. The default value is migration indicating migration within a VPC. Changing this creates a new group.
- Enable bool
- Enables or disables the Protection group.
- Name string
- The name of a protection group.
- Sdrs
Protectiongroup stringV1Id - (String) ID of the protection group.
- Timeouts
Sdrs
Protectiongroup V1Timeouts Args
- domain
Id String - Specifies the ID of an
active-active domain
. Changing this creates a new group. Anactive-active domain
id can be extracted fromdata/opentelekomcloud_sdrs_domain_v1
and shouldn't be confused with tenantdomain
. - source
Availability StringZone - Specifies the source AZ of a protection group. Changing this creates a new group.
- source
Vpc StringId - Specifies the ID of the source VPC. Changing this creates a new group.
- target
Availability StringZone - Specifies the target AZ of a protection group. Changing this creates a new group.
- description String
- The description of a protection group. Changing this creates a new group.
- dr
Type String - Specifies the deployment model. The default value is migration indicating migration within a VPC. Changing this creates a new group.
- enable Boolean
- Enables or disables the Protection group.
- name String
- The name of a protection group.
- sdrs
Protectiongroup StringV1Id - (String) ID of the protection group.
- timeouts
Sdrs
Protectiongroup V1Timeouts
- domain
Id string - Specifies the ID of an
active-active domain
. Changing this creates a new group. Anactive-active domain
id can be extracted fromdata/opentelekomcloud_sdrs_domain_v1
and shouldn't be confused with tenantdomain
. - source
Availability stringZone - Specifies the source AZ of a protection group. Changing this creates a new group.
- source
Vpc stringId - Specifies the ID of the source VPC. Changing this creates a new group.
- target
Availability stringZone - Specifies the target AZ of a protection group. Changing this creates a new group.
- description string
- The description of a protection group. Changing this creates a new group.
- dr
Type string - Specifies the deployment model. The default value is migration indicating migration within a VPC. Changing this creates a new group.
- enable boolean
- Enables or disables the Protection group.
- name string
- The name of a protection group.
- sdrs
Protectiongroup stringV1Id - (String) ID of the protection group.
- timeouts
Sdrs
Protectiongroup V1Timeouts
- domain_
id str - Specifies the ID of an
active-active domain
. Changing this creates a new group. Anactive-active domain
id can be extracted fromdata/opentelekomcloud_sdrs_domain_v1
and shouldn't be confused with tenantdomain
. - source_
availability_ strzone - Specifies the source AZ of a protection group. Changing this creates a new group.
- source_
vpc_ strid - Specifies the ID of the source VPC. Changing this creates a new group.
- target_
availability_ strzone - Specifies the target AZ of a protection group. Changing this creates a new group.
- description str
- The description of a protection group. Changing this creates a new group.
- dr_
type str - Specifies the deployment model. The default value is migration indicating migration within a VPC. Changing this creates a new group.
- enable bool
- Enables or disables the Protection group.
- name str
- The name of a protection group.
- sdrs_
protectiongroup_ strv1_ id - (String) ID of the protection group.
- timeouts
Sdrs
Protectiongroup V1Timeouts Args
- domain
Id String - Specifies the ID of an
active-active domain
. Changing this creates a new group. Anactive-active domain
id can be extracted fromdata/opentelekomcloud_sdrs_domain_v1
and shouldn't be confused with tenantdomain
. - source
Availability StringZone - Specifies the source AZ of a protection group. Changing this creates a new group.
- source
Vpc StringId - Specifies the ID of the source VPC. Changing this creates a new group.
- target
Availability StringZone - Specifies the target AZ of a protection group. Changing this creates a new group.
- description String
- The description of a protection group. Changing this creates a new group.
- dr
Type String - Specifies the deployment model. The default value is migration indicating migration within a VPC. Changing this creates a new group.
- enable Boolean
- Enables or disables the Protection group.
- name String
- The name of a protection group.
- sdrs
Protectiongroup StringV1Id - (String) ID of the protection group.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the SdrsProtectiongroupV1 resource produces the following output properties:
- created_
at str - (String) Time of creation of the protection group.
- id str
- The provider-assigned unique ID for this managed resource.
- updated_
at str - (String) Time of last update of the protection group.
Look up Existing SdrsProtectiongroupV1 Resource
Get an existing SdrsProtectiongroupV1 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?: SdrsProtectiongroupV1State, opts?: CustomResourceOptions): SdrsProtectiongroupV1
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
description: Optional[str] = None,
domain_id: Optional[str] = None,
dr_type: Optional[str] = None,
enable: Optional[bool] = None,
name: Optional[str] = None,
sdrs_protectiongroup_v1_id: Optional[str] = None,
source_availability_zone: Optional[str] = None,
source_vpc_id: Optional[str] = None,
target_availability_zone: Optional[str] = None,
timeouts: Optional[SdrsProtectiongroupV1TimeoutsArgs] = None,
updated_at: Optional[str] = None) -> SdrsProtectiongroupV1
func GetSdrsProtectiongroupV1(ctx *Context, name string, id IDInput, state *SdrsProtectiongroupV1State, opts ...ResourceOption) (*SdrsProtectiongroupV1, error)
public static SdrsProtectiongroupV1 Get(string name, Input<string> id, SdrsProtectiongroupV1State? state, CustomResourceOptions? opts = null)
public static SdrsProtectiongroupV1 get(String name, Output<String> id, SdrsProtectiongroupV1State state, CustomResourceOptions options)
resources: _: type: opentelekomcloud:SdrsProtectiongroupV1 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.
- Created
At string - (String) Time of creation of the protection group.
- Description string
- The description of a protection group. Changing this creates a new group.
- Domain
Id string - Specifies the ID of an
active-active domain
. Changing this creates a new group. Anactive-active domain
id can be extracted fromdata/opentelekomcloud_sdrs_domain_v1
and shouldn't be confused with tenantdomain
. - Dr
Type string - Specifies the deployment model. The default value is migration indicating migration within a VPC. Changing this creates a new group.
- Enable bool
- Enables or disables the Protection group.
- Name string
- The name of a protection group.
- Sdrs
Protectiongroup stringV1Id - (String) ID of the protection group.
- Source
Availability stringZone - Specifies the source AZ of a protection group. Changing this creates a new group.
- Source
Vpc stringId - Specifies the ID of the source VPC. Changing this creates a new group.
- Target
Availability stringZone - Specifies the target AZ of a protection group. Changing this creates a new group.
- Timeouts
Sdrs
Protectiongroup V1Timeouts - Updated
At string - (String) Time of last update of the protection group.
- Created
At string - (String) Time of creation of the protection group.
- Description string
- The description of a protection group. Changing this creates a new group.
- Domain
Id string - Specifies the ID of an
active-active domain
. Changing this creates a new group. Anactive-active domain
id can be extracted fromdata/opentelekomcloud_sdrs_domain_v1
and shouldn't be confused with tenantdomain
. - Dr
Type string - Specifies the deployment model. The default value is migration indicating migration within a VPC. Changing this creates a new group.
- Enable bool
- Enables or disables the Protection group.
- Name string
- The name of a protection group.
- Sdrs
Protectiongroup stringV1Id - (String) ID of the protection group.
- Source
Availability stringZone - Specifies the source AZ of a protection group. Changing this creates a new group.
- Source
Vpc stringId - Specifies the ID of the source VPC. Changing this creates a new group.
- Target
Availability stringZone - Specifies the target AZ of a protection group. Changing this creates a new group.
- Timeouts
Sdrs
Protectiongroup V1Timeouts Args - Updated
At string - (String) Time of last update of the protection group.
- created
At String - (String) Time of creation of the protection group.
- description String
- The description of a protection group. Changing this creates a new group.
- domain
Id String - Specifies the ID of an
active-active domain
. Changing this creates a new group. Anactive-active domain
id can be extracted fromdata/opentelekomcloud_sdrs_domain_v1
and shouldn't be confused with tenantdomain
. - dr
Type String - Specifies the deployment model. The default value is migration indicating migration within a VPC. Changing this creates a new group.
- enable Boolean
- Enables or disables the Protection group.
- name String
- The name of a protection group.
- sdrs
Protectiongroup StringV1Id - (String) ID of the protection group.
- source
Availability StringZone - Specifies the source AZ of a protection group. Changing this creates a new group.
- source
Vpc StringId - Specifies the ID of the source VPC. Changing this creates a new group.
- target
Availability StringZone - Specifies the target AZ of a protection group. Changing this creates a new group.
- timeouts
Sdrs
Protectiongroup V1Timeouts - updated
At String - (String) Time of last update of the protection group.
- created
At string - (String) Time of creation of the protection group.
- description string
- The description of a protection group. Changing this creates a new group.
- domain
Id string - Specifies the ID of an
active-active domain
. Changing this creates a new group. Anactive-active domain
id can be extracted fromdata/opentelekomcloud_sdrs_domain_v1
and shouldn't be confused with tenantdomain
. - dr
Type string - Specifies the deployment model. The default value is migration indicating migration within a VPC. Changing this creates a new group.
- enable boolean
- Enables or disables the Protection group.
- name string
- The name of a protection group.
- sdrs
Protectiongroup stringV1Id - (String) ID of the protection group.
- source
Availability stringZone - Specifies the source AZ of a protection group. Changing this creates a new group.
- source
Vpc stringId - Specifies the ID of the source VPC. Changing this creates a new group.
- target
Availability stringZone - Specifies the target AZ of a protection group. Changing this creates a new group.
- timeouts
Sdrs
Protectiongroup V1Timeouts - updated
At string - (String) Time of last update of the protection group.
- created_
at str - (String) Time of creation of the protection group.
- description str
- The description of a protection group. Changing this creates a new group.
- domain_
id str - Specifies the ID of an
active-active domain
. Changing this creates a new group. Anactive-active domain
id can be extracted fromdata/opentelekomcloud_sdrs_domain_v1
and shouldn't be confused with tenantdomain
. - dr_
type str - Specifies the deployment model. The default value is migration indicating migration within a VPC. Changing this creates a new group.
- enable bool
- Enables or disables the Protection group.
- name str
- The name of a protection group.
- sdrs_
protectiongroup_ strv1_ id - (String) ID of the protection group.
- source_
availability_ strzone - Specifies the source AZ of a protection group. Changing this creates a new group.
- source_
vpc_ strid - Specifies the ID of the source VPC. Changing this creates a new group.
- target_
availability_ strzone - Specifies the target AZ of a protection group. Changing this creates a new group.
- timeouts
Sdrs
Protectiongroup V1Timeouts Args - updated_
at str - (String) Time of last update of the protection group.
- created
At String - (String) Time of creation of the protection group.
- description String
- The description of a protection group. Changing this creates a new group.
- domain
Id String - Specifies the ID of an
active-active domain
. Changing this creates a new group. Anactive-active domain
id can be extracted fromdata/opentelekomcloud_sdrs_domain_v1
and shouldn't be confused with tenantdomain
. - dr
Type String - Specifies the deployment model. The default value is migration indicating migration within a VPC. Changing this creates a new group.
- enable Boolean
- Enables or disables the Protection group.
- name String
- The name of a protection group.
- sdrs
Protectiongroup StringV1Id - (String) ID of the protection group.
- source
Availability StringZone - Specifies the source AZ of a protection group. Changing this creates a new group.
- source
Vpc StringId - Specifies the ID of the source VPC. Changing this creates a new group.
- target
Availability StringZone - Specifies the target AZ of a protection group. Changing this creates a new group.
- timeouts Property Map
- updated
At String - (String) Time of last update of the protection group.
Supporting Types
SdrsProtectiongroupV1Timeouts, SdrsProtectiongroupV1TimeoutsArgs
Import
Protection groups can be imported using the id
, e.g.
$ pulumi import opentelekomcloud:index/sdrsProtectiongroupV1:SdrsProtectiongroupV1 group_1 7117d38e-4c8f-4624-a505-bd96b97d024c
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
- License
- Notes
- This Pulumi package is based on the
opentelekomcloud
Terraform Provider.