oci.OsManagement.ManagedInstanceGroup
Explore with Pulumi AI
This resource provides the Managed Instance Group resource in Oracle Cloud Infrastructure OS Management service.
Creates a new Managed Instance Group on the management system. This will not contain any managed instances after it is first created, and they must be added later.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedInstanceGroup = new oci.osmanagement.ManagedInstanceGroup("test_managed_instance_group", {
compartmentId: compartmentId,
displayName: managedInstanceGroupDisplayName,
definedTags: {
"foo-namespace.bar-key": "value",
},
description: managedInstanceGroupDescription,
freeformTags: {
"bar-key": "value",
},
osFamily: managedInstanceGroupOsFamily,
managedInstanceIds: managedInstanceGroupManagedInstanceIds,
});
import pulumi
import pulumi_oci as oci
test_managed_instance_group = oci.os_management.ManagedInstanceGroup("test_managed_instance_group",
compartment_id=compartment_id,
display_name=managed_instance_group_display_name,
defined_tags={
"foo-namespace.bar-key": "value",
},
description=managed_instance_group_description,
freeform_tags={
"bar-key": "value",
},
os_family=managed_instance_group_os_family,
managed_instance_ids=managed_instance_group_managed_instance_ids)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/OsManagement"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := OsManagement.NewManagedInstanceGroup(ctx, "test_managed_instance_group", &OsManagement.ManagedInstanceGroupArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(managedInstanceGroupDisplayName),
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
Description: pulumi.Any(managedInstanceGroupDescription),
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("value"),
},
OsFamily: pulumi.Any(managedInstanceGroupOsFamily),
ManagedInstanceIds: pulumi.Any(managedInstanceGroupManagedInstanceIds),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testManagedInstanceGroup = new Oci.OsManagement.ManagedInstanceGroup("test_managed_instance_group", new()
{
CompartmentId = compartmentId,
DisplayName = managedInstanceGroupDisplayName,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
Description = managedInstanceGroupDescription,
FreeformTags =
{
{ "bar-key", "value" },
},
OsFamily = managedInstanceGroupOsFamily,
ManagedInstanceIds = managedInstanceGroupManagedInstanceIds,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OsManagement.ManagedInstanceGroup;
import com.pulumi.oci.OsManagement.ManagedInstanceGroupArgs;
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 testManagedInstanceGroup = new ManagedInstanceGroup("testManagedInstanceGroup", ManagedInstanceGroupArgs.builder()
.compartmentId(compartmentId)
.displayName(managedInstanceGroupDisplayName)
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(managedInstanceGroupDescription)
.freeformTags(Map.of("bar-key", "value"))
.osFamily(managedInstanceGroupOsFamily)
.managedInstanceIds(managedInstanceGroupManagedInstanceIds)
.build());
}
}
resources:
testManagedInstanceGroup:
type: oci:OsManagement:ManagedInstanceGroup
name: test_managed_instance_group
properties:
compartmentId: ${compartmentId}
displayName: ${managedInstanceGroupDisplayName}
definedTags:
foo-namespace.bar-key: value
description: ${managedInstanceGroupDescription}
freeformTags:
bar-key: value
osFamily: ${managedInstanceGroupOsFamily}
managedInstanceIds: ${managedInstanceGroupManagedInstanceIds}
Create ManagedInstanceGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagedInstanceGroup(name: string, args: ManagedInstanceGroupArgs, opts?: CustomResourceOptions);
@overload
def ManagedInstanceGroup(resource_name: str,
args: ManagedInstanceGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagedInstanceGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
managed_instance_ids: Optional[Sequence[str]] = None,
os_family: Optional[str] = None)
func NewManagedInstanceGroup(ctx *Context, name string, args ManagedInstanceGroupArgs, opts ...ResourceOption) (*ManagedInstanceGroup, error)
public ManagedInstanceGroup(string name, ManagedInstanceGroupArgs args, CustomResourceOptions? opts = null)
public ManagedInstanceGroup(String name, ManagedInstanceGroupArgs args)
public ManagedInstanceGroup(String name, ManagedInstanceGroupArgs args, CustomResourceOptions options)
type: oci:OsManagement:ManagedInstanceGroup
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 ManagedInstanceGroupArgs
- 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 ManagedInstanceGroupArgs
- 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 ManagedInstanceGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagedInstanceGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagedInstanceGroupArgs
- 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 managedInstanceGroupResource = new Oci.OsManagement.ManagedInstanceGroup("managedInstanceGroupResource", new()
{
CompartmentId = "string",
DisplayName = "string",
DefinedTags =
{
{ "string", "any" },
},
Description = "string",
FreeformTags =
{
{ "string", "any" },
},
ManagedInstanceIds = new[]
{
"string",
},
OsFamily = "string",
});
example, err := OsManagement.NewManagedInstanceGroup(ctx, "managedInstanceGroupResource", &OsManagement.ManagedInstanceGroupArgs{
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Description: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
ManagedInstanceIds: pulumi.StringArray{
pulumi.String("string"),
},
OsFamily: pulumi.String("string"),
})
var managedInstanceGroupResource = new ManagedInstanceGroup("managedInstanceGroupResource", ManagedInstanceGroupArgs.builder()
.compartmentId("string")
.displayName("string")
.definedTags(Map.of("string", "any"))
.description("string")
.freeformTags(Map.of("string", "any"))
.managedInstanceIds("string")
.osFamily("string")
.build());
managed_instance_group_resource = oci.os_management.ManagedInstanceGroup("managedInstanceGroupResource",
compartment_id="string",
display_name="string",
defined_tags={
"string": "any",
},
description="string",
freeform_tags={
"string": "any",
},
managed_instance_ids=["string"],
os_family="string")
const managedInstanceGroupResource = new oci.osmanagement.ManagedInstanceGroup("managedInstanceGroupResource", {
compartmentId: "string",
displayName: "string",
definedTags: {
string: "any",
},
description: "string",
freeformTags: {
string: "any",
},
managedInstanceIds: ["string"],
osFamily: "string",
});
type: oci:OsManagement:ManagedInstanceGroup
properties:
compartmentId: string
definedTags:
string: any
description: string
displayName: string
freeformTags:
string: any
managedInstanceIds:
- string
osFamily: string
ManagedInstanceGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ManagedInstanceGroup resource accepts the following input properties:
- Compartment
Id string - (Updatable) OCID for the Compartment
- Display
Name string - (Updatable) Managed Instance Group identifier
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Information specified by the user about the managed instance group
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Managed
Instance List<string>Ids The list of managed instance OCIDs to be added to the managed instance group.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Os
Family string - The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux.
- Compartment
Id string - (Updatable) OCID for the Compartment
- Display
Name string - (Updatable) Managed Instance Group identifier
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Information specified by the user about the managed instance group
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Managed
Instance []stringIds The list of managed instance OCIDs to be added to the managed instance group.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Os
Family string - The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux.
- compartment
Id String - (Updatable) OCID for the Compartment
- display
Name String - (Updatable) Managed Instance Group identifier
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Information specified by the user about the managed instance group
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- managed
Instance List<String>Ids The list of managed instance OCIDs to be added to the managed instance group.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- os
Family String - The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux.
- compartment
Id string - (Updatable) OCID for the Compartment
- display
Name string - (Updatable) Managed Instance Group identifier
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Information specified by the user about the managed instance group
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- managed
Instance string[]Ids The list of managed instance OCIDs to be added to the managed instance group.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- os
Family string - The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux.
- compartment_
id str - (Updatable) OCID for the Compartment
- display_
name str - (Updatable) Managed Instance Group identifier
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Information specified by the user about the managed instance group
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- managed_
instance_ Sequence[str]ids The list of managed instance OCIDs to be added to the managed instance group.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- os_
family str - The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux.
- compartment
Id String - (Updatable) OCID for the Compartment
- display
Name String - (Updatable) Managed Instance Group identifier
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Information specified by the user about the managed instance group
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- managed
Instance List<String>Ids The list of managed instance OCIDs to be added to the managed instance group.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- os
Family String - The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagedInstanceGroup resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Instance intCount - Managed
Instances List<ManagedInstance Group Managed Instance> - list of Managed Instances in the group
- State string
- The current state of the Software Source.
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Instance intCount - Managed
Instances []ManagedInstance Group Managed Instance - list of Managed Instances in the group
- State string
- The current state of the Software Source.
- id String
- The provider-assigned unique ID for this managed resource.
- managed
Instance IntegerCount - managed
Instances List<ManagedInstance Group Managed Instance> - list of Managed Instances in the group
- state String
- The current state of the Software Source.
- id string
- The provider-assigned unique ID for this managed resource.
- managed
Instance numberCount - managed
Instances ManagedInstance Group Managed Instance[] - list of Managed Instances in the group
- state string
- The current state of the Software Source.
- id str
- The provider-assigned unique ID for this managed resource.
- managed_
instance_ intcount - managed_
instances Sequence[osmanagement.Managed Instance Group Managed Instance] - list of Managed Instances in the group
- state str
- The current state of the Software Source.
- id String
- The provider-assigned unique ID for this managed resource.
- managed
Instance NumberCount - managed
Instances List<Property Map> - list of Managed Instances in the group
- state String
- The current state of the Software Source.
Look up Existing ManagedInstanceGroup Resource
Get an existing ManagedInstanceGroup 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?: ManagedInstanceGroupState, opts?: CustomResourceOptions): ManagedInstanceGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
managed_instance_count: Optional[int] = None,
managed_instance_ids: Optional[Sequence[str]] = None,
managed_instances: Optional[Sequence[_osmanagement.ManagedInstanceGroupManagedInstanceArgs]] = None,
os_family: Optional[str] = None,
state: Optional[str] = None) -> ManagedInstanceGroup
func GetManagedInstanceGroup(ctx *Context, name string, id IDInput, state *ManagedInstanceGroupState, opts ...ResourceOption) (*ManagedInstanceGroup, error)
public static ManagedInstanceGroup Get(string name, Input<string> id, ManagedInstanceGroupState? state, CustomResourceOptions? opts = null)
public static ManagedInstanceGroup get(String name, Output<String> id, ManagedInstanceGroupState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Compartment
Id string - (Updatable) OCID for the Compartment
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Information specified by the user about the managed instance group
- Display
Name string - (Updatable) Managed Instance Group identifier
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Managed
Instance intCount - Managed
Instance List<string>Ids The list of managed instance OCIDs to be added to the managed instance group.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Managed
Instances List<ManagedInstance Group Managed Instance> - list of Managed Instances in the group
- Os
Family string - The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux.
- State string
- The current state of the Software Source.
- Compartment
Id string - (Updatable) OCID for the Compartment
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Information specified by the user about the managed instance group
- Display
Name string - (Updatable) Managed Instance Group identifier
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Managed
Instance intCount - Managed
Instance []stringIds The list of managed instance OCIDs to be added to the managed instance group.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Managed
Instances []ManagedInstance Group Managed Instance Args - list of Managed Instances in the group
- Os
Family string - The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux.
- State string
- The current state of the Software Source.
- compartment
Id String - (Updatable) OCID for the Compartment
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Information specified by the user about the managed instance group
- display
Name String - (Updatable) Managed Instance Group identifier
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- managed
Instance IntegerCount - managed
Instance List<String>Ids The list of managed instance OCIDs to be added to the managed instance group.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- managed
Instances List<ManagedInstance Group Managed Instance> - list of Managed Instances in the group
- os
Family String - The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux.
- state String
- The current state of the Software Source.
- compartment
Id string - (Updatable) OCID for the Compartment
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Information specified by the user about the managed instance group
- display
Name string - (Updatable) Managed Instance Group identifier
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- managed
Instance numberCount - managed
Instance string[]Ids The list of managed instance OCIDs to be added to the managed instance group.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- managed
Instances ManagedInstance Group Managed Instance[] - list of Managed Instances in the group
- os
Family string - The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux.
- state string
- The current state of the Software Source.
- compartment_
id str - (Updatable) OCID for the Compartment
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Information specified by the user about the managed instance group
- display_
name str - (Updatable) Managed Instance Group identifier
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- managed_
instance_ intcount - managed_
instance_ Sequence[str]ids The list of managed instance OCIDs to be added to the managed instance group.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- managed_
instances Sequence[osmanagement.Managed Instance Group Managed Instance Args] - list of Managed Instances in the group
- os_
family str - The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux.
- state str
- The current state of the Software Source.
- compartment
Id String - (Updatable) OCID for the Compartment
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Information specified by the user about the managed instance group
- display
Name String - (Updatable) Managed Instance Group identifier
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- managed
Instance NumberCount - managed
Instance List<String>Ids The list of managed instance OCIDs to be added to the managed instance group.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- managed
Instances List<Property Map> - list of Managed Instances in the group
- os
Family String - The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux.
- state String
- The current state of the Software Source.
Supporting Types
ManagedInstanceGroupManagedInstance, ManagedInstanceGroupManagedInstanceArgs
- Display
Name string - (Updatable) Managed Instance Group identifier
- Id string
- unique identifier that is immutable on creation
- Display
Name string - (Updatable) Managed Instance Group identifier
- Id string
- unique identifier that is immutable on creation
- display
Name String - (Updatable) Managed Instance Group identifier
- id String
- unique identifier that is immutable on creation
- display
Name string - (Updatable) Managed Instance Group identifier
- id string
- unique identifier that is immutable on creation
- display_
name str - (Updatable) Managed Instance Group identifier
- id str
- unique identifier that is immutable on creation
- display
Name String - (Updatable) Managed Instance Group identifier
- id String
- unique identifier that is immutable on creation
Import
ManagedInstanceGroups can be imported using the id
, e.g.
$ pulumi import oci:OsManagement/managedInstanceGroup:ManagedInstanceGroup test_managed_instance_group "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.