flexibleengine.DrsReplicationV2
Explore with Pulumi AI
!> Warning: It has been deprecated.
Manages a V2 replication resource within FlexibleEngine.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";
const volume1 = new flexibleengine.BlockstorageVolumeV2("volume1", {
size: 10,
availabilityZone: "eu-west-0a",
});
const volume2 = new flexibleengine.BlockstorageVolumeV2("volume2", {
size: 10,
availabilityZone: "eu-west-0b",
});
const replication1 = new flexibleengine.DrsReplicationV2("replication1", {
description: "The description of replication_1",
priorityStation: "eu-west-0a",
volumeIds: [
volume1.blockstorageVolumeV2Id,
volume2.blockstorageVolumeV2Id,
],
});
import pulumi
import pulumi_flexibleengine as flexibleengine
volume1 = flexibleengine.BlockstorageVolumeV2("volume1",
size=10,
availability_zone="eu-west-0a")
volume2 = flexibleengine.BlockstorageVolumeV2("volume2",
size=10,
availability_zone="eu-west-0b")
replication1 = flexibleengine.DrsReplicationV2("replication1",
description="The description of replication_1",
priority_station="eu-west-0a",
volume_ids=[
volume1.blockstorage_volume_v2_id,
volume2.blockstorage_volume_v2_id,
])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
volume1, err := flexibleengine.NewBlockstorageVolumeV2(ctx, "volume1", &flexibleengine.BlockstorageVolumeV2Args{
Size: pulumi.Float64(10),
AvailabilityZone: pulumi.String("eu-west-0a"),
})
if err != nil {
return err
}
volume2, err := flexibleengine.NewBlockstorageVolumeV2(ctx, "volume2", &flexibleengine.BlockstorageVolumeV2Args{
Size: pulumi.Float64(10),
AvailabilityZone: pulumi.String("eu-west-0b"),
})
if err != nil {
return err
}
_, err = flexibleengine.NewDrsReplicationV2(ctx, "replication1", &flexibleengine.DrsReplicationV2Args{
Description: pulumi.String("The description of replication_1"),
PriorityStation: pulumi.String("eu-west-0a"),
VolumeIds: pulumi.StringArray{
volume1.BlockstorageVolumeV2Id,
volume2.BlockstorageVolumeV2Id,
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Flexibleengine = Pulumi.Flexibleengine;
return await Deployment.RunAsync(() =>
{
var volume1 = new Flexibleengine.BlockstorageVolumeV2("volume1", new()
{
Size = 10,
AvailabilityZone = "eu-west-0a",
});
var volume2 = new Flexibleengine.BlockstorageVolumeV2("volume2", new()
{
Size = 10,
AvailabilityZone = "eu-west-0b",
});
var replication1 = new Flexibleengine.DrsReplicationV2("replication1", new()
{
Description = "The description of replication_1",
PriorityStation = "eu-west-0a",
VolumeIds = new[]
{
volume1.BlockstorageVolumeV2Id,
volume2.BlockstorageVolumeV2Id,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.flexibleengine.BlockstorageVolumeV2;
import com.pulumi.flexibleengine.BlockstorageVolumeV2Args;
import com.pulumi.flexibleengine.DrsReplicationV2;
import com.pulumi.flexibleengine.DrsReplicationV2Args;
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 volume1 = new BlockstorageVolumeV2("volume1", BlockstorageVolumeV2Args.builder()
.size(10)
.availabilityZone("eu-west-0a")
.build());
var volume2 = new BlockstorageVolumeV2("volume2", BlockstorageVolumeV2Args.builder()
.size(10)
.availabilityZone("eu-west-0b")
.build());
var replication1 = new DrsReplicationV2("replication1", DrsReplicationV2Args.builder()
.description("The description of replication_1")
.priorityStation("eu-west-0a")
.volumeIds(
volume1.blockstorageVolumeV2Id(),
volume2.blockstorageVolumeV2Id())
.build());
}
}
resources:
volume1:
type: flexibleengine:BlockstorageVolumeV2
properties:
size: 10
availabilityZone: eu-west-0a
volume2:
type: flexibleengine:BlockstorageVolumeV2
properties:
size: 10
availabilityZone: eu-west-0b
replication1:
type: flexibleengine:DrsReplicationV2
properties:
description: The description of replication_1
priorityStation: eu-west-0a
volumeIds:
- ${volume1.blockstorageVolumeV2Id}
- ${volume2.blockstorageVolumeV2Id}
Create DrsReplicationV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DrsReplicationV2(name: string, args: DrsReplicationV2Args, opts?: CustomResourceOptions);
@overload
def DrsReplicationV2(resource_name: str,
args: DrsReplicationV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def DrsReplicationV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
priority_station: Optional[str] = None,
volume_ids: Optional[Sequence[str]] = None,
description: Optional[str] = None,
drs_replication_v2_id: Optional[str] = None,
name: Optional[str] = None,
replication_model: Optional[str] = None)
func NewDrsReplicationV2(ctx *Context, name string, args DrsReplicationV2Args, opts ...ResourceOption) (*DrsReplicationV2, error)
public DrsReplicationV2(string name, DrsReplicationV2Args args, CustomResourceOptions? opts = null)
public DrsReplicationV2(String name, DrsReplicationV2Args args)
public DrsReplicationV2(String name, DrsReplicationV2Args args, CustomResourceOptions options)
type: flexibleengine:DrsReplicationV2
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 DrsReplicationV2Args
- 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 DrsReplicationV2Args
- 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 DrsReplicationV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DrsReplicationV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DrsReplicationV2Args
- 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 drsReplicationV2Resource = new Flexibleengine.DrsReplicationV2("drsReplicationV2Resource", new()
{
PriorityStation = "string",
VolumeIds = new[]
{
"string",
},
Description = "string",
DrsReplicationV2Id = "string",
Name = "string",
ReplicationModel = "string",
});
example, err := flexibleengine.NewDrsReplicationV2(ctx, "drsReplicationV2Resource", &flexibleengine.DrsReplicationV2Args{
PriorityStation: pulumi.String("string"),
VolumeIds: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
DrsReplicationV2Id: pulumi.String("string"),
Name: pulumi.String("string"),
ReplicationModel: pulumi.String("string"),
})
var drsReplicationV2Resource = new DrsReplicationV2("drsReplicationV2Resource", DrsReplicationV2Args.builder()
.priorityStation("string")
.volumeIds("string")
.description("string")
.drsReplicationV2Id("string")
.name("string")
.replicationModel("string")
.build());
drs_replication_v2_resource = flexibleengine.DrsReplicationV2("drsReplicationV2Resource",
priority_station="string",
volume_ids=["string"],
description="string",
drs_replication_v2_id="string",
name="string",
replication_model="string")
const drsReplicationV2Resource = new flexibleengine.DrsReplicationV2("drsReplicationV2Resource", {
priorityStation: "string",
volumeIds: ["string"],
description: "string",
drsReplicationV2Id: "string",
name: "string",
replicationModel: "string",
});
type: flexibleengine:DrsReplicationV2
properties:
description: string
drsReplicationV2Id: string
name: string
priorityStation: string
replicationModel: string
volumeIds:
- string
DrsReplicationV2 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 DrsReplicationV2 resource accepts the following input properties:
- Priority
Station string - The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- Volume
Ids List<string> - An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- Description string
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- Drs
Replication stringV2Id - Name string
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- Replication
Model string - The type of the EVS replication pair. Currently only type hypermetro is supported.
- Priority
Station string - The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- Volume
Ids []string - An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- Description string
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- Drs
Replication stringV2Id - Name string
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- Replication
Model string - The type of the EVS replication pair. Currently only type hypermetro is supported.
- priority
Station String - The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- volume
Ids List<String> - An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- description String
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drs
Replication StringV2Id - name String
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- replication
Model String - The type of the EVS replication pair. Currently only type hypermetro is supported.
- priority
Station string - The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- volume
Ids string[] - An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- description string
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drs
Replication stringV2Id - name string
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- replication
Model string - The type of the EVS replication pair. Currently only type hypermetro is supported.
- priority_
station str - The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- volume_
ids Sequence[str] - An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- description str
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drs_
replication_ strv2_ id - name str
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- replication_
model str - The type of the EVS replication pair. Currently only type hypermetro is supported.
- priority
Station String - The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- volume
Ids List<String> - An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- description String
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drs
Replication StringV2Id - name String
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- replication
Model String - The type of the EVS replication pair. Currently only type hypermetro is supported.
Outputs
All input properties are implicitly available as output properties. Additionally, the DrsReplicationV2 resource produces the following output properties:
- Created
At string - The creation time of the EVS replication pair.
- Failure
Detail string - The returned error code if the EVS replication pair status is error.
- Fault
Level string - The fault level of the EVS replication pair.
- Id string
- The provider-assigned unique ID for this managed resource.
- Progress string
- The synchronization progress of the EVS replication pair. Unit: %.
- Record
Metadata string - The metadata of the EVS replication pair.
- Replication
Consistency stringGroup Id - The ID of the replication consistency group where the EVS replication pair belongs.
- Replication
Status string - The replication status of the EVS replication pair.
- Status string
- The status of the EVS replication pair.
- Updated
At string - The update time of the EVS replication pair.
- Created
At string - The creation time of the EVS replication pair.
- Failure
Detail string - The returned error code if the EVS replication pair status is error.
- Fault
Level string - The fault level of the EVS replication pair.
- Id string
- The provider-assigned unique ID for this managed resource.
- Progress string
- The synchronization progress of the EVS replication pair. Unit: %.
- Record
Metadata string - The metadata of the EVS replication pair.
- Replication
Consistency stringGroup Id - The ID of the replication consistency group where the EVS replication pair belongs.
- Replication
Status string - The replication status of the EVS replication pair.
- Status string
- The status of the EVS replication pair.
- Updated
At string - The update time of the EVS replication pair.
- created
At String - The creation time of the EVS replication pair.
- failure
Detail String - The returned error code if the EVS replication pair status is error.
- fault
Level String - The fault level of the EVS replication pair.
- id String
- The provider-assigned unique ID for this managed resource.
- progress String
- The synchronization progress of the EVS replication pair. Unit: %.
- record
Metadata String - The metadata of the EVS replication pair.
- replication
Consistency StringGroup Id - The ID of the replication consistency group where the EVS replication pair belongs.
- replication
Status String - The replication status of the EVS replication pair.
- status String
- The status of the EVS replication pair.
- updated
At String - The update time of the EVS replication pair.
- created
At string - The creation time of the EVS replication pair.
- failure
Detail string - The returned error code if the EVS replication pair status is error.
- fault
Level string - The fault level of the EVS replication pair.
- id string
- The provider-assigned unique ID for this managed resource.
- progress string
- The synchronization progress of the EVS replication pair. Unit: %.
- record
Metadata string - The metadata of the EVS replication pair.
- replication
Consistency stringGroup Id - The ID of the replication consistency group where the EVS replication pair belongs.
- replication
Status string - The replication status of the EVS replication pair.
- status string
- The status of the EVS replication pair.
- updated
At string - The update time of the EVS replication pair.
- created_
at str - The creation time of the EVS replication pair.
- failure_
detail str - The returned error code if the EVS replication pair status is error.
- fault_
level str - The fault level of the EVS replication pair.
- id str
- The provider-assigned unique ID for this managed resource.
- progress str
- The synchronization progress of the EVS replication pair. Unit: %.
- record_
metadata str - The metadata of the EVS replication pair.
- replication_
consistency_ strgroup_ id - The ID of the replication consistency group where the EVS replication pair belongs.
- replication_
status str - The replication status of the EVS replication pair.
- status str
- The status of the EVS replication pair.
- updated_
at str - The update time of the EVS replication pair.
- created
At String - The creation time of the EVS replication pair.
- failure
Detail String - The returned error code if the EVS replication pair status is error.
- fault
Level String - The fault level of the EVS replication pair.
- id String
- The provider-assigned unique ID for this managed resource.
- progress String
- The synchronization progress of the EVS replication pair. Unit: %.
- record
Metadata String - The metadata of the EVS replication pair.
- replication
Consistency StringGroup Id - The ID of the replication consistency group where the EVS replication pair belongs.
- replication
Status String - The replication status of the EVS replication pair.
- status String
- The status of the EVS replication pair.
- updated
At String - The update time of the EVS replication pair.
Look up Existing DrsReplicationV2 Resource
Get an existing DrsReplicationV2 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?: DrsReplicationV2State, opts?: CustomResourceOptions): DrsReplicationV2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
description: Optional[str] = None,
drs_replication_v2_id: Optional[str] = None,
failure_detail: Optional[str] = None,
fault_level: Optional[str] = None,
name: Optional[str] = None,
priority_station: Optional[str] = None,
progress: Optional[str] = None,
record_metadata: Optional[str] = None,
replication_consistency_group_id: Optional[str] = None,
replication_model: Optional[str] = None,
replication_status: Optional[str] = None,
status: Optional[str] = None,
updated_at: Optional[str] = None,
volume_ids: Optional[Sequence[str]] = None) -> DrsReplicationV2
func GetDrsReplicationV2(ctx *Context, name string, id IDInput, state *DrsReplicationV2State, opts ...ResourceOption) (*DrsReplicationV2, error)
public static DrsReplicationV2 Get(string name, Input<string> id, DrsReplicationV2State? state, CustomResourceOptions? opts = null)
public static DrsReplicationV2 get(String name, Output<String> id, DrsReplicationV2State state, CustomResourceOptions options)
resources: _: type: flexibleengine:DrsReplicationV2 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 - The creation time of the EVS replication pair.
- Description string
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- Drs
Replication stringV2Id - Failure
Detail string - The returned error code if the EVS replication pair status is error.
- Fault
Level string - The fault level of the EVS replication pair.
- Name string
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- Priority
Station string - The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- Progress string
- The synchronization progress of the EVS replication pair. Unit: %.
- Record
Metadata string - The metadata of the EVS replication pair.
- Replication
Consistency stringGroup Id - The ID of the replication consistency group where the EVS replication pair belongs.
- Replication
Model string - The type of the EVS replication pair. Currently only type hypermetro is supported.
- Replication
Status string - The replication status of the EVS replication pair.
- Status string
- The status of the EVS replication pair.
- Updated
At string - The update time of the EVS replication pair.
- Volume
Ids List<string> - An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- Created
At string - The creation time of the EVS replication pair.
- Description string
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- Drs
Replication stringV2Id - Failure
Detail string - The returned error code if the EVS replication pair status is error.
- Fault
Level string - The fault level of the EVS replication pair.
- Name string
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- Priority
Station string - The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- Progress string
- The synchronization progress of the EVS replication pair. Unit: %.
- Record
Metadata string - The metadata of the EVS replication pair.
- Replication
Consistency stringGroup Id - The ID of the replication consistency group where the EVS replication pair belongs.
- Replication
Model string - The type of the EVS replication pair. Currently only type hypermetro is supported.
- Replication
Status string - The replication status of the EVS replication pair.
- Status string
- The status of the EVS replication pair.
- Updated
At string - The update time of the EVS replication pair.
- Volume
Ids []string - An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- created
At String - The creation time of the EVS replication pair.
- description String
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drs
Replication StringV2Id - failure
Detail String - The returned error code if the EVS replication pair status is error.
- fault
Level String - The fault level of the EVS replication pair.
- name String
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- priority
Station String - The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- progress String
- The synchronization progress of the EVS replication pair. Unit: %.
- record
Metadata String - The metadata of the EVS replication pair.
- replication
Consistency StringGroup Id - The ID of the replication consistency group where the EVS replication pair belongs.
- replication
Model String - The type of the EVS replication pair. Currently only type hypermetro is supported.
- replication
Status String - The replication status of the EVS replication pair.
- status String
- The status of the EVS replication pair.
- updated
At String - The update time of the EVS replication pair.
- volume
Ids List<String> - An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- created
At string - The creation time of the EVS replication pair.
- description string
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drs
Replication stringV2Id - failure
Detail string - The returned error code if the EVS replication pair status is error.
- fault
Level string - The fault level of the EVS replication pair.
- name string
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- priority
Station string - The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- progress string
- The synchronization progress of the EVS replication pair. Unit: %.
- record
Metadata string - The metadata of the EVS replication pair.
- replication
Consistency stringGroup Id - The ID of the replication consistency group where the EVS replication pair belongs.
- replication
Model string - The type of the EVS replication pair. Currently only type hypermetro is supported.
- replication
Status string - The replication status of the EVS replication pair.
- status string
- The status of the EVS replication pair.
- updated
At string - The update time of the EVS replication pair.
- volume
Ids string[] - An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- created_
at str - The creation time of the EVS replication pair.
- description str
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drs_
replication_ strv2_ id - failure_
detail str - The returned error code if the EVS replication pair status is error.
- fault_
level str - The fault level of the EVS replication pair.
- name str
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- priority_
station str - The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- progress str
- The synchronization progress of the EVS replication pair. Unit: %.
- record_
metadata str - The metadata of the EVS replication pair.
- replication_
consistency_ strgroup_ id - The ID of the replication consistency group where the EVS replication pair belongs.
- replication_
model str - The type of the EVS replication pair. Currently only type hypermetro is supported.
- replication_
status str - The replication status of the EVS replication pair.
- status str
- The status of the EVS replication pair.
- updated_
at str - The update time of the EVS replication pair.
- volume_
ids Sequence[str] - An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- created
At String - The creation time of the EVS replication pair.
- description String
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drs
Replication StringV2Id - failure
Detail String - The returned error code if the EVS replication pair status is error.
- fault
Level String - The fault level of the EVS replication pair.
- name String
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- priority
Station String - The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- progress String
- The synchronization progress of the EVS replication pair. Unit: %.
- record
Metadata String - The metadata of the EVS replication pair.
- replication
Consistency StringGroup Id - The ID of the replication consistency group where the EVS replication pair belongs.
- replication
Model String - The type of the EVS replication pair. Currently only type hypermetro is supported.
- replication
Status String - The replication status of the EVS replication pair.
- status String
- The status of the EVS replication pair.
- updated
At String - The update time of the EVS replication pair.
- volume
Ids List<String> - An array of one or more IDs of the EVS disks used to create the EVS replication pair.
Package Details
- Repository
- flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
- License
- Notes
- This Pulumi package is based on the
flexibleengine
Terraform Provider.