ibm.IsInstanceGroupMembership
Explore with Pulumi AI
Create, update, or delete a instance group memership of an instance group. For more information, about instance group membership, see bulk provisioning instances with instance groups.
Note:
VPC infrastructure services are a regional specific based endpoint, by default targets to us-south
. Please make sure to target right region in the provider block as shown in the provider.tf
file, if VPC service is created in region other than us-south
.
provider.tf
import * as pulumi from "@pulumi/pulumi";
import pulumi
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
return await Deployment.RunAsync(() =>
{
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
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) {
}
}
{}
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const example = new ibm.IsInstanceGroupMembership("example", {
instanceGroup: ibm_is_instance_group.example.id,
instanceGroupMembership: data.ibm_is_instance_group_memberships.example.memberships[0].instance_group_membership,
});
import pulumi
import pulumi_ibm as ibm
example = ibm.IsInstanceGroupMembership("example",
instance_group=ibm_is_instance_group["example"]["id"],
instance_group_membership=data["ibm_is_instance_group_memberships"]["example"]["memberships"][0]["instance_group_membership"])
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.NewIsInstanceGroupMembership(ctx, "example", &ibm.IsInstanceGroupMembershipArgs{
InstanceGroup: pulumi.Any(ibm_is_instance_group.Example.Id),
InstanceGroupMembership: pulumi.Any(data.Ibm_is_instance_group_memberships.Example.Memberships[0].Instance_group_membership),
})
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 example = new Ibm.IsInstanceGroupMembership("example", new()
{
InstanceGroup = ibm_is_instance_group.Example.Id,
InstanceGroupMembership = data.Ibm_is_instance_group_memberships.Example.Memberships[0].Instance_group_membership,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IsInstanceGroupMembership;
import com.pulumi.ibm.IsInstanceGroupMembershipArgs;
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 example = new IsInstanceGroupMembership("example", IsInstanceGroupMembershipArgs.builder()
.instanceGroup(ibm_is_instance_group.example().id())
.instanceGroupMembership(data.ibm_is_instance_group_memberships().example().memberships()[0].instance_group_membership())
.build());
}
}
resources:
example:
type: ibm:IsInstanceGroupMembership
properties:
instanceGroup: ${ibm_is_instance_group.example.id}
instanceGroupMembership: ${data.ibm_is_instance_group_memberships.example.memberships[0].instance_group_membership}
Create IsInstanceGroupMembership Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IsInstanceGroupMembership(name: string, args: IsInstanceGroupMembershipArgs, opts?: CustomResourceOptions);
@overload
def IsInstanceGroupMembership(resource_name: str,
args: IsInstanceGroupMembershipArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IsInstanceGroupMembership(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_group: Optional[str] = None,
instance_group_membership: Optional[str] = None,
action_delete: Optional[bool] = None,
is_instance_group_membership_id: Optional[str] = None,
name: Optional[str] = None)
func NewIsInstanceGroupMembership(ctx *Context, name string, args IsInstanceGroupMembershipArgs, opts ...ResourceOption) (*IsInstanceGroupMembership, error)
public IsInstanceGroupMembership(string name, IsInstanceGroupMembershipArgs args, CustomResourceOptions? opts = null)
public IsInstanceGroupMembership(String name, IsInstanceGroupMembershipArgs args)
public IsInstanceGroupMembership(String name, IsInstanceGroupMembershipArgs args, CustomResourceOptions options)
type: ibm:IsInstanceGroupMembership
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 IsInstanceGroupMembershipArgs
- 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 IsInstanceGroupMembershipArgs
- 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 IsInstanceGroupMembershipArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IsInstanceGroupMembershipArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IsInstanceGroupMembershipArgs
- 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 isInstanceGroupMembershipResource = new Ibm.IsInstanceGroupMembership("isInstanceGroupMembershipResource", new()
{
InstanceGroup = "string",
InstanceGroupMembership = "string",
ActionDelete = false,
IsInstanceGroupMembershipId = "string",
Name = "string",
});
example, err := ibm.NewIsInstanceGroupMembership(ctx, "isInstanceGroupMembershipResource", &ibm.IsInstanceGroupMembershipArgs{
InstanceGroup: pulumi.String("string"),
InstanceGroupMembership: pulumi.String("string"),
ActionDelete: pulumi.Bool(false),
IsInstanceGroupMembershipId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var isInstanceGroupMembershipResource = new IsInstanceGroupMembership("isInstanceGroupMembershipResource", IsInstanceGroupMembershipArgs.builder()
.instanceGroup("string")
.instanceGroupMembership("string")
.actionDelete(false)
.isInstanceGroupMembershipId("string")
.name("string")
.build());
is_instance_group_membership_resource = ibm.IsInstanceGroupMembership("isInstanceGroupMembershipResource",
instance_group="string",
instance_group_membership="string",
action_delete=False,
is_instance_group_membership_id="string",
name="string")
const isInstanceGroupMembershipResource = new ibm.IsInstanceGroupMembership("isInstanceGroupMembershipResource", {
instanceGroup: "string",
instanceGroupMembership: "string",
actionDelete: false,
isInstanceGroupMembershipId: "string",
name: "string",
});
type: ibm:IsInstanceGroupMembership
properties:
actionDelete: false
instanceGroup: string
instanceGroupMembership: string
isInstanceGroupMembershipId: string
name: string
IsInstanceGroupMembership 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 IsInstanceGroupMembership resource accepts the following input properties:
- Instance
Group string - The ID of the instance group.
- Instance
Group stringMembership - The ID of the instance group membership.
- Action
Delete bool - The delete flag for the instance group membership. You must set to true to delete the instance group membership.
- Is
Instance stringGroup Membership Id - (String) The combination ID of the instance group and the instance group membership ID's.
- Name string
- The name of the instance group membership.
- Instance
Group string - The ID of the instance group.
- Instance
Group stringMembership - The ID of the instance group membership.
- Action
Delete bool - The delete flag for the instance group membership. You must set to true to delete the instance group membership.
- Is
Instance stringGroup Membership Id - (String) The combination ID of the instance group and the instance group membership ID's.
- Name string
- The name of the instance group membership.
- instance
Group String - The ID of the instance group.
- instance
Group StringMembership - The ID of the instance group membership.
- action
Delete Boolean - The delete flag for the instance group membership. You must set to true to delete the instance group membership.
- is
Instance StringGroup Membership Id - (String) The combination ID of the instance group and the instance group membership ID's.
- name String
- The name of the instance group membership.
- instance
Group string - The ID of the instance group.
- instance
Group stringMembership - The ID of the instance group membership.
- action
Delete boolean - The delete flag for the instance group membership. You must set to true to delete the instance group membership.
- is
Instance stringGroup Membership Id - (String) The combination ID of the instance group and the instance group membership ID's.
- name string
- The name of the instance group membership.
- instance_
group str - The ID of the instance group.
- instance_
group_ strmembership - The ID of the instance group membership.
- action_
delete bool - The delete flag for the instance group membership. You must set to true to delete the instance group membership.
- is_
instance_ strgroup_ membership_ id - (String) The combination ID of the instance group and the instance group membership ID's.
- name str
- The name of the instance group membership.
- instance
Group String - The ID of the instance group.
- instance
Group StringMembership - The ID of the instance group membership.
- action
Delete Boolean - The delete flag for the instance group membership. You must set to true to delete the instance group membership.
- is
Instance StringGroup Membership Id - (String) The combination ID of the instance group and the instance group membership ID's.
- name String
- The name of the instance group membership.
Outputs
All input properties are implicitly available as output properties. Additionally, the IsInstanceGroupMembership resource produces the following output properties:
- Delete
Instance boolOn Membership Delete - (String) If set to true, when deleting the membership, the instance gets deleted.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Templates List<IsInstance Group Membership Instance Template> - (String) The unique identifier for this instance template.
- Instances
List<Is
Instance Group Membership Instance> - (List) Nested
instance
blocks have the following structure: - Load
Balancer stringPool Member - (String) The unique identifier for this load balancer pool member.
- Status string
- (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
- Delete
Instance boolOn Membership Delete - (String) If set to true, when deleting the membership, the instance gets deleted.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Templates []IsInstance Group Membership Instance Template - (String) The unique identifier for this instance template.
- Instances
[]Is
Instance Group Membership Instance - (List) Nested
instance
blocks have the following structure: - Load
Balancer stringPool Member - (String) The unique identifier for this load balancer pool member.
- Status string
- (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
- delete
Instance BooleanOn Membership Delete - (String) If set to true, when deleting the membership, the instance gets deleted.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Templates List<IsInstance Group Membership Instance Template> - (String) The unique identifier for this instance template.
- instances
List<Is
Instance Group Membership Instance> - (List) Nested
instance
blocks have the following structure: - load
Balancer StringPool Member - (String) The unique identifier for this load balancer pool member.
- status String
- (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
- delete
Instance booleanOn Membership Delete - (String) If set to true, when deleting the membership, the instance gets deleted.
- id string
- The provider-assigned unique ID for this managed resource.
- instance
Templates IsInstance Group Membership Instance Template[] - (String) The unique identifier for this instance template.
- instances
Is
Instance Group Membership Instance[] - (List) Nested
instance
blocks have the following structure: - load
Balancer stringPool Member - (String) The unique identifier for this load balancer pool member.
- status string
- (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
- delete_
instance_ boolon_ membership_ delete - (String) If set to true, when deleting the membership, the instance gets deleted.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_
templates Sequence[IsInstance Group Membership Instance Template] - (String) The unique identifier for this instance template.
- instances
Sequence[Is
Instance Group Membership Instance] - (List) Nested
instance
blocks have the following structure: - load_
balancer_ strpool_ member - (String) The unique identifier for this load balancer pool member.
- status str
- (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
- delete
Instance BooleanOn Membership Delete - (String) If set to true, when deleting the membership, the instance gets deleted.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Templates List<Property Map> - (String) The unique identifier for this instance template.
- instances List<Property Map>
- (List) Nested
instance
blocks have the following structure: - load
Balancer StringPool Member - (String) The unique identifier for this load balancer pool member.
- status String
- (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
Look up Existing IsInstanceGroupMembership Resource
Get an existing IsInstanceGroupMembership 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?: IsInstanceGroupMembershipState, opts?: CustomResourceOptions): IsInstanceGroupMembership
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action_delete: Optional[bool] = None,
delete_instance_on_membership_delete: Optional[bool] = None,
instance_group: Optional[str] = None,
instance_group_membership: Optional[str] = None,
instance_templates: Optional[Sequence[IsInstanceGroupMembershipInstanceTemplateArgs]] = None,
instances: Optional[Sequence[IsInstanceGroupMembershipInstanceArgs]] = None,
is_instance_group_membership_id: Optional[str] = None,
load_balancer_pool_member: Optional[str] = None,
name: Optional[str] = None,
status: Optional[str] = None) -> IsInstanceGroupMembership
func GetIsInstanceGroupMembership(ctx *Context, name string, id IDInput, state *IsInstanceGroupMembershipState, opts ...ResourceOption) (*IsInstanceGroupMembership, error)
public static IsInstanceGroupMembership Get(string name, Input<string> id, IsInstanceGroupMembershipState? state, CustomResourceOptions? opts = null)
public static IsInstanceGroupMembership get(String name, Output<String> id, IsInstanceGroupMembershipState state, CustomResourceOptions options)
resources: _: type: ibm:IsInstanceGroupMembership 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.
- Action
Delete bool - The delete flag for the instance group membership. You must set to true to delete the instance group membership.
- Delete
Instance boolOn Membership Delete - (String) If set to true, when deleting the membership, the instance gets deleted.
- Instance
Group string - The ID of the instance group.
- Instance
Group stringMembership - The ID of the instance group membership.
- Instance
Templates List<IsInstance Group Membership Instance Template> - (String) The unique identifier for this instance template.
- Instances
List<Is
Instance Group Membership Instance> - (List) Nested
instance
blocks have the following structure: - Is
Instance stringGroup Membership Id - (String) The combination ID of the instance group and the instance group membership ID's.
- Load
Balancer stringPool Member - (String) The unique identifier for this load balancer pool member.
- Name string
- The name of the instance group membership.
- Status string
- (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
- Action
Delete bool - The delete flag for the instance group membership. You must set to true to delete the instance group membership.
- Delete
Instance boolOn Membership Delete - (String) If set to true, when deleting the membership, the instance gets deleted.
- Instance
Group string - The ID of the instance group.
- Instance
Group stringMembership - The ID of the instance group membership.
- Instance
Templates []IsInstance Group Membership Instance Template Args - (String) The unique identifier for this instance template.
- Instances
[]Is
Instance Group Membership Instance Args - (List) Nested
instance
blocks have the following structure: - Is
Instance stringGroup Membership Id - (String) The combination ID of the instance group and the instance group membership ID's.
- Load
Balancer stringPool Member - (String) The unique identifier for this load balancer pool member.
- Name string
- The name of the instance group membership.
- Status string
- (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
- action
Delete Boolean - The delete flag for the instance group membership. You must set to true to delete the instance group membership.
- delete
Instance BooleanOn Membership Delete - (String) If set to true, when deleting the membership, the instance gets deleted.
- instance
Group String - The ID of the instance group.
- instance
Group StringMembership - The ID of the instance group membership.
- instance
Templates List<IsInstance Group Membership Instance Template> - (String) The unique identifier for this instance template.
- instances
List<Is
Instance Group Membership Instance> - (List) Nested
instance
blocks have the following structure: - is
Instance StringGroup Membership Id - (String) The combination ID of the instance group and the instance group membership ID's.
- load
Balancer StringPool Member - (String) The unique identifier for this load balancer pool member.
- name String
- The name of the instance group membership.
- status String
- (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
- action
Delete boolean - The delete flag for the instance group membership. You must set to true to delete the instance group membership.
- delete
Instance booleanOn Membership Delete - (String) If set to true, when deleting the membership, the instance gets deleted.
- instance
Group string - The ID of the instance group.
- instance
Group stringMembership - The ID of the instance group membership.
- instance
Templates IsInstance Group Membership Instance Template[] - (String) The unique identifier for this instance template.
- instances
Is
Instance Group Membership Instance[] - (List) Nested
instance
blocks have the following structure: - is
Instance stringGroup Membership Id - (String) The combination ID of the instance group and the instance group membership ID's.
- load
Balancer stringPool Member - (String) The unique identifier for this load balancer pool member.
- name string
- The name of the instance group membership.
- status string
- (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
- action_
delete bool - The delete flag for the instance group membership. You must set to true to delete the instance group membership.
- delete_
instance_ boolon_ membership_ delete - (String) If set to true, when deleting the membership, the instance gets deleted.
- instance_
group str - The ID of the instance group.
- instance_
group_ strmembership - The ID of the instance group membership.
- instance_
templates Sequence[IsInstance Group Membership Instance Template Args] - (String) The unique identifier for this instance template.
- instances
Sequence[Is
Instance Group Membership Instance Args] - (List) Nested
instance
blocks have the following structure: - is_
instance_ strgroup_ membership_ id - (String) The combination ID of the instance group and the instance group membership ID's.
- load_
balancer_ strpool_ member - (String) The unique identifier for this load balancer pool member.
- name str
- The name of the instance group membership.
- status str
- (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
- action
Delete Boolean - The delete flag for the instance group membership. You must set to true to delete the instance group membership.
- delete
Instance BooleanOn Membership Delete - (String) If set to true, when deleting the membership, the instance gets deleted.
- instance
Group String - The ID of the instance group.
- instance
Group StringMembership - The ID of the instance group membership.
- instance
Templates List<Property Map> - (String) The unique identifier for this instance template.
- instances List<Property Map>
- (List) Nested
instance
blocks have the following structure: - is
Instance StringGroup Membership Id - (String) The combination ID of the instance group and the instance group membership ID's.
- load
Balancer StringPool Member - (String) The unique identifier for this load balancer pool member.
- name String
- The name of the instance group membership.
- status String
- (String) The status of the instance group membership are: • deleting Membership is deleting dependent resources. • failed Membership is unable to maintain dependent resources. • healthy Membership is active and serving in the group. • pending Membership is waiting for dependent resources. • unhealthy Membership contains unhealthy dependent resources.
Supporting Types
IsInstanceGroupMembershipInstance, IsInstanceGroupMembershipInstanceArgs
- Crn string
- (String) The CRN for this instance template.
- Name string
- The name of the instance group membership.
- Virtual
Server stringInstance - (String) The unique identifier for this virtual server instance.
- Crn string
- (String) The CRN for this instance template.
- Name string
- The name of the instance group membership.
- Virtual
Server stringInstance - (String) The unique identifier for this virtual server instance.
- crn String
- (String) The CRN for this instance template.
- name String
- The name of the instance group membership.
- virtual
Server StringInstance - (String) The unique identifier for this virtual server instance.
- crn string
- (String) The CRN for this instance template.
- name string
- The name of the instance group membership.
- virtual
Server stringInstance - (String) The unique identifier for this virtual server instance.
- crn str
- (String) The CRN for this instance template.
- name str
- The name of the instance group membership.
- virtual_
server_ strinstance - (String) The unique identifier for this virtual server instance.
- crn String
- (String) The CRN for this instance template.
- name String
- The name of the instance group membership.
- virtual
Server StringInstance - (String) The unique identifier for this virtual server instance.
IsInstanceGroupMembershipInstanceTemplate, IsInstanceGroupMembershipInstanceTemplateArgs
- Crn string
- (String) The CRN for this instance template.
- Instance
Template string - (String) The unique identifier for this instance template.
- Name string
- The name of the instance group membership.
- Crn string
- (String) The CRN for this instance template.
- Instance
Template string - (String) The unique identifier for this instance template.
- Name string
- The name of the instance group membership.
- crn String
- (String) The CRN for this instance template.
- instance
Template String - (String) The unique identifier for this instance template.
- name String
- The name of the instance group membership.
- crn string
- (String) The CRN for this instance template.
- instance
Template string - (String) The unique identifier for this instance template.
- name string
- The name of the instance group membership.
- crn str
- (String) The CRN for this instance template.
- instance_
template str - (String) The unique identifier for this instance template.
- name str
- The name of the instance group membership.
- crn String
- (String) The CRN for this instance template.
- instance
Template String - (String) The unique identifier for this instance template.
- name String
- The name of the instance group membership.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.