1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. compute
  5. InstanceGroup
Google Cloud v8.26.0 published on Thursday, Apr 10, 2025 by Pulumi

gcp.compute.InstanceGroup

Explore with Pulumi AI

Creates a group of dissimilar Compute Engine virtual machine instances. For more information, see the official documentation and API

Example Usage

Empty Instance Group

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

const test = new gcp.compute.InstanceGroup("test", {
    name: "test",
    description: "Test instance group",
    zone: "us-central1-a",
    network: _default.id,
});
Copy
import pulumi
import pulumi_gcp as gcp

test = gcp.compute.InstanceGroup("test",
    name="test",
    description="Test instance group",
    zone="us-central1-a",
    network=default["id"])
Copy
package main

import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewInstanceGroup(ctx, "test", &compute.InstanceGroupArgs{
			Name:        pulumi.String("test"),
			Description: pulumi.String("Test instance group"),
			Zone:        pulumi.String("us-central1-a"),
			Network:     pulumi.Any(_default.Id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var test = new Gcp.Compute.InstanceGroup("test", new()
    {
        Name = "test",
        Description = "Test instance group",
        Zone = "us-central1-a",
        Network = @default.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.InstanceGroup;
import com.pulumi.gcp.compute.InstanceGroupArgs;
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 test = new InstanceGroup("test", InstanceGroupArgs.builder()
            .name("test")
            .description("Test instance group")
            .zone("us-central1-a")
            .network(default_.id())
            .build());

    }
}
Copy
resources:
  test:
    type: gcp:compute:InstanceGroup
    properties:
      name: test
      description: Test instance group
      zone: us-central1-a
      network: ${default.id}
Copy

Example Usage - With instances and named ports

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

const webservers = new gcp.compute.InstanceGroup("webservers", {
    name: "webservers",
    description: "Test instance group",
    instances: [
        test.id,
        test2.id,
    ],
    namedPorts: [
        {
            name: "http",
            port: 8080,
        },
        {
            name: "https",
            port: 8443,
        },
    ],
    zone: "us-central1-a",
});
Copy
import pulumi
import pulumi_gcp as gcp

webservers = gcp.compute.InstanceGroup("webservers",
    name="webservers",
    description="Test instance group",
    instances=[
        test["id"],
        test2["id"],
    ],
    named_ports=[
        {
            "name": "http",
            "port": 8080,
        },
        {
            "name": "https",
            "port": 8443,
        },
    ],
    zone="us-central1-a")
Copy
package main

import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewInstanceGroup(ctx, "webservers", &compute.InstanceGroupArgs{
			Name:        pulumi.String("webservers"),
			Description: pulumi.String("Test instance group"),
			Instances: pulumi.StringArray{
				test.Id,
				test2.Id,
			},
			NamedPorts: compute.InstanceGroupNamedPortTypeArray{
				&compute.InstanceGroupNamedPortTypeArgs{
					Name: pulumi.String("http"),
					Port: pulumi.Int(8080),
				},
				&compute.InstanceGroupNamedPortTypeArgs{
					Name: pulumi.String("https"),
					Port: pulumi.Int(8443),
				},
			},
			Zone: pulumi.String("us-central1-a"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var webservers = new Gcp.Compute.InstanceGroup("webservers", new()
    {
        Name = "webservers",
        Description = "Test instance group",
        Instances = new[]
        {
            test.Id,
            test2.Id,
        },
        NamedPorts = new[]
        {
            new Gcp.Compute.Inputs.InstanceGroupNamedPortArgs
            {
                Name = "http",
                Port = 8080,
            },
            new Gcp.Compute.Inputs.InstanceGroupNamedPortArgs
            {
                Name = "https",
                Port = 8443,
            },
        },
        Zone = "us-central1-a",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.InstanceGroup;
import com.pulumi.gcp.compute.InstanceGroupArgs;
import com.pulumi.gcp.compute.inputs.InstanceGroupNamedPortArgs;
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 webservers = new InstanceGroup("webservers", InstanceGroupArgs.builder()
            .name("webservers")
            .description("Test instance group")
            .instances(            
                test.id(),
                test2.id())
            .namedPorts(            
                InstanceGroupNamedPortArgs.builder()
                    .name("http")
                    .port(8080)
                    .build(),
                InstanceGroupNamedPortArgs.builder()
                    .name("https")
                    .port(8443)
                    .build())
            .zone("us-central1-a")
            .build());

    }
}
Copy
resources:
  webservers:
    type: gcp:compute:InstanceGroup
    properties:
      name: webservers
      description: Test instance group
      instances:
        - ${test.id}
        - ${test2.id}
      namedPorts:
        - name: http
          port: '8080'
        - name: https
          port: '8443'
      zone: us-central1-a
Copy

Create InstanceGroup Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new InstanceGroup(name: string, args?: InstanceGroupArgs, opts?: CustomResourceOptions);
@overload
def InstanceGroup(resource_name: str,
                  args: Optional[InstanceGroupArgs] = None,
                  opts: Optional[ResourceOptions] = None)

@overload
def InstanceGroup(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  description: Optional[str] = None,
                  instances: Optional[Sequence[str]] = None,
                  name: Optional[str] = None,
                  named_ports: Optional[Sequence[InstanceGroupNamedPortArgs]] = None,
                  network: Optional[str] = None,
                  project: Optional[str] = None,
                  zone: Optional[str] = None)
func NewInstanceGroup(ctx *Context, name string, args *InstanceGroupArgs, opts ...ResourceOption) (*InstanceGroup, error)
public InstanceGroup(string name, InstanceGroupArgs? args = null, CustomResourceOptions? opts = null)
public InstanceGroup(String name, InstanceGroupArgs args)
public InstanceGroup(String name, InstanceGroupArgs args, CustomResourceOptions options)
type: gcp:compute:InstanceGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args InstanceGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args InstanceGroupArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args InstanceGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args InstanceGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. InstanceGroupArgs
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 instanceGroupResource = new Gcp.Compute.InstanceGroup("instanceGroupResource", new()
{
    Description = "string",
    Instances = new[]
    {
        "string",
    },
    Name = "string",
    NamedPorts = new[]
    {
        new Gcp.Compute.Inputs.InstanceGroupNamedPortArgs
        {
            Name = "string",
            Port = 0,
        },
    },
    Network = "string",
    Project = "string",
    Zone = "string",
});
Copy
example, err := compute.NewInstanceGroup(ctx, "instanceGroupResource", &compute.InstanceGroupArgs{
	Description: pulumi.String("string"),
	Instances: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name: pulumi.String("string"),
	NamedPorts: compute.InstanceGroupNamedPortTypeArray{
		&compute.InstanceGroupNamedPortTypeArgs{
			Name: pulumi.String("string"),
			Port: pulumi.Int(0),
		},
	},
	Network: pulumi.String("string"),
	Project: pulumi.String("string"),
	Zone:    pulumi.String("string"),
})
Copy
var instanceGroupResource = new InstanceGroup("instanceGroupResource", InstanceGroupArgs.builder()
    .description("string")
    .instances("string")
    .name("string")
    .namedPorts(InstanceGroupNamedPortArgs.builder()
        .name("string")
        .port(0)
        .build())
    .network("string")
    .project("string")
    .zone("string")
    .build());
Copy
instance_group_resource = gcp.compute.InstanceGroup("instanceGroupResource",
    description="string",
    instances=["string"],
    name="string",
    named_ports=[{
        "name": "string",
        "port": 0,
    }],
    network="string",
    project="string",
    zone="string")
Copy
const instanceGroupResource = new gcp.compute.InstanceGroup("instanceGroupResource", {
    description: "string",
    instances: ["string"],
    name: "string",
    namedPorts: [{
        name: "string",
        port: 0,
    }],
    network: "string",
    project: "string",
    zone: "string",
});
Copy
type: gcp:compute:InstanceGroup
properties:
    description: string
    instances:
        - string
    name: string
    namedPorts:
        - name: string
          port: 0
    network: string
    project: string
    zone: string
Copy

InstanceGroup 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 InstanceGroup resource accepts the following input properties:

Description Changes to this property will trigger replacement. string
An optional textual description of the instance group.
Instances List<string>
The list of instances in the group, in self_link format. When adding instances they must all be in the same network and zone as the instance group.
Name Changes to this property will trigger replacement. string
The name of the instance group. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
NamedPorts List<InstanceGroupNamedPort>
The named port configuration. See the section below for details on configuration. Structure is documented below.
Network Changes to this property will trigger replacement. string
The URL of the network the instance group is in. If this is different from the network where the instances are in, the creation fails. Defaults to the network where the instances are in (if neither network nor instances is specified, this field will be blank).
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Zone Changes to this property will trigger replacement. string
The zone that this instance group should be created in.


Description Changes to this property will trigger replacement. string
An optional textual description of the instance group.
Instances []string
The list of instances in the group, in self_link format. When adding instances they must all be in the same network and zone as the instance group.
Name Changes to this property will trigger replacement. string
The name of the instance group. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
NamedPorts []InstanceGroupNamedPortTypeArgs
The named port configuration. See the section below for details on configuration. Structure is documented below.
Network Changes to this property will trigger replacement. string
The URL of the network the instance group is in. If this is different from the network where the instances are in, the creation fails. Defaults to the network where the instances are in (if neither network nor instances is specified, this field will be blank).
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Zone Changes to this property will trigger replacement. string
The zone that this instance group should be created in.


description Changes to this property will trigger replacement. String
An optional textual description of the instance group.
instances List<String>
The list of instances in the group, in self_link format. When adding instances they must all be in the same network and zone as the instance group.
name Changes to this property will trigger replacement. String
The name of the instance group. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
namedPorts List<InstanceGroupNamedPort>
The named port configuration. See the section below for details on configuration. Structure is documented below.
network Changes to this property will trigger replacement. String
The URL of the network the instance group is in. If this is different from the network where the instances are in, the creation fails. Defaults to the network where the instances are in (if neither network nor instances is specified, this field will be blank).
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
zone Changes to this property will trigger replacement. String
The zone that this instance group should be created in.


description Changes to this property will trigger replacement. string
An optional textual description of the instance group.
instances string[]
The list of instances in the group, in self_link format. When adding instances they must all be in the same network and zone as the instance group.
name Changes to this property will trigger replacement. string
The name of the instance group. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
namedPorts InstanceGroupNamedPort[]
The named port configuration. See the section below for details on configuration. Structure is documented below.
network Changes to this property will trigger replacement. string
The URL of the network the instance group is in. If this is different from the network where the instances are in, the creation fails. Defaults to the network where the instances are in (if neither network nor instances is specified, this field will be blank).
project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
zone Changes to this property will trigger replacement. string
The zone that this instance group should be created in.


description Changes to this property will trigger replacement. str
An optional textual description of the instance group.
instances Sequence[str]
The list of instances in the group, in self_link format. When adding instances they must all be in the same network and zone as the instance group.
name Changes to this property will trigger replacement. str
The name of the instance group. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
named_ports Sequence[InstanceGroupNamedPortArgs]
The named port configuration. See the section below for details on configuration. Structure is documented below.
network Changes to this property will trigger replacement. str
The URL of the network the instance group is in. If this is different from the network where the instances are in, the creation fails. Defaults to the network where the instances are in (if neither network nor instances is specified, this field will be blank).
project Changes to this property will trigger replacement. str
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
zone Changes to this property will trigger replacement. str
The zone that this instance group should be created in.


description Changes to this property will trigger replacement. String
An optional textual description of the instance group.
instances List<String>
The list of instances in the group, in self_link format. When adding instances they must all be in the same network and zone as the instance group.
name Changes to this property will trigger replacement. String
The name of the instance group. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
namedPorts List<Property Map>
The named port configuration. See the section below for details on configuration. Structure is documented below.
network Changes to this property will trigger replacement. String
The URL of the network the instance group is in. If this is different from the network where the instances are in, the creation fails. Defaults to the network where the instances are in (if neither network nor instances is specified, this field will be blank).
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
zone Changes to this property will trigger replacement. String
The zone that this instance group should be created in.


Outputs

All input properties are implicitly available as output properties. Additionally, the InstanceGroup resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
SelfLink string
The URI of the created resource.
Size int
The number of instances in the group.
Id string
The provider-assigned unique ID for this managed resource.
SelfLink string
The URI of the created resource.
Size int
The number of instances in the group.
id String
The provider-assigned unique ID for this managed resource.
selfLink String
The URI of the created resource.
size Integer
The number of instances in the group.
id string
The provider-assigned unique ID for this managed resource.
selfLink string
The URI of the created resource.
size number
The number of instances in the group.
id str
The provider-assigned unique ID for this managed resource.
self_link str
The URI of the created resource.
size int
The number of instances in the group.
id String
The provider-assigned unique ID for this managed resource.
selfLink String
The URI of the created resource.
size Number
The number of instances in the group.

Look up Existing InstanceGroup Resource

Get an existing InstanceGroup 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?: InstanceGroupState, opts?: CustomResourceOptions): InstanceGroup
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        instances: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        named_ports: Optional[Sequence[InstanceGroupNamedPortArgs]] = None,
        network: Optional[str] = None,
        project: Optional[str] = None,
        self_link: Optional[str] = None,
        size: Optional[int] = None,
        zone: Optional[str] = None) -> InstanceGroup
func GetInstanceGroup(ctx *Context, name string, id IDInput, state *InstanceGroupState, opts ...ResourceOption) (*InstanceGroup, error)
public static InstanceGroup Get(string name, Input<string> id, InstanceGroupState? state, CustomResourceOptions? opts = null)
public static InstanceGroup get(String name, Output<String> id, InstanceGroupState state, CustomResourceOptions options)
resources:  _:    type: gcp:compute:InstanceGroup    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Description Changes to this property will trigger replacement. string
An optional textual description of the instance group.
Instances List<string>
The list of instances in the group, in self_link format. When adding instances they must all be in the same network and zone as the instance group.
Name Changes to this property will trigger replacement. string
The name of the instance group. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
NamedPorts List<InstanceGroupNamedPort>
The named port configuration. See the section below for details on configuration. Structure is documented below.
Network Changes to this property will trigger replacement. string
The URL of the network the instance group is in. If this is different from the network where the instances are in, the creation fails. Defaults to the network where the instances are in (if neither network nor instances is specified, this field will be blank).
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
SelfLink string
The URI of the created resource.
Size int
The number of instances in the group.
Zone Changes to this property will trigger replacement. string
The zone that this instance group should be created in.


Description Changes to this property will trigger replacement. string
An optional textual description of the instance group.
Instances []string
The list of instances in the group, in self_link format. When adding instances they must all be in the same network and zone as the instance group.
Name Changes to this property will trigger replacement. string
The name of the instance group. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
NamedPorts []InstanceGroupNamedPortTypeArgs
The named port configuration. See the section below for details on configuration. Structure is documented below.
Network Changes to this property will trigger replacement. string
The URL of the network the instance group is in. If this is different from the network where the instances are in, the creation fails. Defaults to the network where the instances are in (if neither network nor instances is specified, this field will be blank).
Project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
SelfLink string
The URI of the created resource.
Size int
The number of instances in the group.
Zone Changes to this property will trigger replacement. string
The zone that this instance group should be created in.


description Changes to this property will trigger replacement. String
An optional textual description of the instance group.
instances List<String>
The list of instances in the group, in self_link format. When adding instances they must all be in the same network and zone as the instance group.
name Changes to this property will trigger replacement. String
The name of the instance group. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
namedPorts List<InstanceGroupNamedPort>
The named port configuration. See the section below for details on configuration. Structure is documented below.
network Changes to this property will trigger replacement. String
The URL of the network the instance group is in. If this is different from the network where the instances are in, the creation fails. Defaults to the network where the instances are in (if neither network nor instances is specified, this field will be blank).
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
selfLink String
The URI of the created resource.
size Integer
The number of instances in the group.
zone Changes to this property will trigger replacement. String
The zone that this instance group should be created in.


description Changes to this property will trigger replacement. string
An optional textual description of the instance group.
instances string[]
The list of instances in the group, in self_link format. When adding instances they must all be in the same network and zone as the instance group.
name Changes to this property will trigger replacement. string
The name of the instance group. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
namedPorts InstanceGroupNamedPort[]
The named port configuration. See the section below for details on configuration. Structure is documented below.
network Changes to this property will trigger replacement. string
The URL of the network the instance group is in. If this is different from the network where the instances are in, the creation fails. Defaults to the network where the instances are in (if neither network nor instances is specified, this field will be blank).
project Changes to this property will trigger replacement. string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
selfLink string
The URI of the created resource.
size number
The number of instances in the group.
zone Changes to this property will trigger replacement. string
The zone that this instance group should be created in.


description Changes to this property will trigger replacement. str
An optional textual description of the instance group.
instances Sequence[str]
The list of instances in the group, in self_link format. When adding instances they must all be in the same network and zone as the instance group.
name Changes to this property will trigger replacement. str
The name of the instance group. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
named_ports Sequence[InstanceGroupNamedPortArgs]
The named port configuration. See the section below for details on configuration. Structure is documented below.
network Changes to this property will trigger replacement. str
The URL of the network the instance group is in. If this is different from the network where the instances are in, the creation fails. Defaults to the network where the instances are in (if neither network nor instances is specified, this field will be blank).
project Changes to this property will trigger replacement. str
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
self_link str
The URI of the created resource.
size int
The number of instances in the group.
zone Changes to this property will trigger replacement. str
The zone that this instance group should be created in.


description Changes to this property will trigger replacement. String
An optional textual description of the instance group.
instances List<String>
The list of instances in the group, in self_link format. When adding instances they must all be in the same network and zone as the instance group.
name Changes to this property will trigger replacement. String
The name of the instance group. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
namedPorts List<Property Map>
The named port configuration. See the section below for details on configuration. Structure is documented below.
network Changes to this property will trigger replacement. String
The URL of the network the instance group is in. If this is different from the network where the instances are in, the creation fails. Defaults to the network where the instances are in (if neither network nor instances is specified, this field will be blank).
project Changes to this property will trigger replacement. String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
selfLink String
The URI of the created resource.
size Number
The number of instances in the group.
zone Changes to this property will trigger replacement. String
The zone that this instance group should be created in.


Supporting Types

InstanceGroupNamedPort
, InstanceGroupNamedPortArgs

Name This property is required. string
The name which the port will be mapped to.
Port This property is required. int
The port number to map the name to.
Name This property is required. string
The name which the port will be mapped to.
Port This property is required. int
The port number to map the name to.
name This property is required. String
The name which the port will be mapped to.
port This property is required. Integer
The port number to map the name to.
name This property is required. string
The name which the port will be mapped to.
port This property is required. number
The port number to map the name to.
name This property is required. str
The name which the port will be mapped to.
port This property is required. int
The port number to map the name to.
name This property is required. String
The name which the port will be mapped to.
port This property is required. Number
The port number to map the name to.

Import

Instance groups can be imported using the zone and name with an optional project, e.g.

  • projects/{{project_id}}/zones/{{zone}}/instanceGroups/{{instance_group_id}}

  • {{project_id}}/{{zone}}/{{instance_group_id}}

  • {{zone}}/{{instance_group_id}}

When using the pulumi import command, instance groups can be imported using one of the formats above. For example:

$ pulumi import gcp:compute/instanceGroup:InstanceGroup default {{zone}}/{{instance_group_id}}
Copy
$ pulumi import gcp:compute/instanceGroup:InstanceGroup default {{project_id}}/{{zone}}/{{instance_group_id}}
Copy
$ pulumi import gcp:compute/instanceGroup:InstanceGroup default projects/{{project_id}}/zones/{{zone}}/instanceGroups/{{instance_group_id}}
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Google Cloud (GCP) Classic pulumi/pulumi-gcp
License
Apache-2.0
Notes
This Pulumi package is based on the google-beta Terraform Provider.