1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. compute
  5. NetworkEndpoint
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

gcp.compute.NetworkEndpoint

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

    A Network endpoint represents a IP address and port combination that is part of a specific network endpoint group (NEG). NEGs are zonal collections of these endpoints for GCP resources within a single subnet. NOTE: Network endpoints cannot be created outside of a network endpoint group.

    NOTE In case the Endpoint’s Instance is recreated, it’s needed to perform apply twice. To avoid situations like this, please use this resource with the lifecycle update_triggered_by method, with the passed Instance’s ID.

    To get more information about NetworkEndpoint, see:

    Example Usage

    Network Endpoint

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const myImage = gcp.compute.getImage({
        family: "debian-11",
        project: "debian-cloud",
    });
    const _default = new gcp.compute.Network("default", {
        name: "neg-network",
        autoCreateSubnetworks: false,
    });
    const defaultSubnetwork = new gcp.compute.Subnetwork("default", {
        name: "neg-subnetwork",
        ipCidrRange: "10.0.0.1/16",
        region: "us-central1",
        network: _default.id,
    });
    const endpoint_instance = new gcp.compute.Instance("endpoint-instance", {
        networkInterfaces: [{
            accessConfigs: [{}],
            subnetwork: defaultSubnetwork.id,
        }],
        name: "endpoint-instance",
        machineType: "e2-medium",
        bootDisk: {
            initializeParams: {
                image: myImage.then(myImage => myImage.selfLink),
            },
        },
    });
    const default_endpoint = new gcp.compute.NetworkEndpoint("default-endpoint", {
        networkEndpointGroup: neg.name,
        instance: endpoint_instance.name,
        port: neg.defaultPort,
        ipAddress: endpoint_instance.networkInterfaces.apply(networkInterfaces => networkInterfaces[0].networkIp),
    });
    const group = new gcp.compute.NetworkEndpointGroup("group", {
        name: "my-lb-neg",
        network: _default.id,
        subnetwork: defaultSubnetwork.id,
        defaultPort: 90,
        zone: "us-central1-a",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    my_image = gcp.compute.get_image(family="debian-11",
        project="debian-cloud")
    default = gcp.compute.Network("default",
        name="neg-network",
        auto_create_subnetworks=False)
    default_subnetwork = gcp.compute.Subnetwork("default",
        name="neg-subnetwork",
        ip_cidr_range="10.0.0.1/16",
        region="us-central1",
        network=default.id)
    endpoint_instance = gcp.compute.Instance("endpoint-instance",
        network_interfaces=[gcp.compute.InstanceNetworkInterfaceArgs(
            access_configs=[gcp.compute.InstanceNetworkInterfaceAccessConfigArgs()],
            subnetwork=default_subnetwork.id,
        )],
        name="endpoint-instance",
        machine_type="e2-medium",
        boot_disk=gcp.compute.InstanceBootDiskArgs(
            initialize_params=gcp.compute.InstanceBootDiskInitializeParamsArgs(
                image=my_image.self_link,
            ),
        ))
    default_endpoint = gcp.compute.NetworkEndpoint("default-endpoint",
        network_endpoint_group=neg["name"],
        instance=endpoint_instance.name,
        port=neg["defaultPort"],
        ip_address=endpoint_instance.network_interfaces[0].network_ip)
    group = gcp.compute.NetworkEndpointGroup("group",
        name="my-lb-neg",
        network=default.id,
        subnetwork=default_subnetwork.id,
        default_port=90,
        zone="us-central1-a")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		myImage, err := compute.LookupImage(ctx, &compute.LookupImageArgs{
    			Family:  pulumi.StringRef("debian-11"),
    			Project: pulumi.StringRef("debian-cloud"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = compute.NewNetwork(ctx, "default", &compute.NetworkArgs{
    			Name:                  pulumi.String("neg-network"),
    			AutoCreateSubnetworks: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		defaultSubnetwork, err := compute.NewSubnetwork(ctx, "default", &compute.SubnetworkArgs{
    			Name:        pulumi.String("neg-subnetwork"),
    			IpCidrRange: pulumi.String("10.0.0.1/16"),
    			Region:      pulumi.String("us-central1"),
    			Network:     _default.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = compute.NewInstance(ctx, "endpoint-instance", &compute.InstanceArgs{
    			NetworkInterfaces: compute.InstanceNetworkInterfaceArray{
    				&compute.InstanceNetworkInterfaceArgs{
    					AccessConfigs: compute.InstanceNetworkInterfaceAccessConfigArray{
    						nil,
    					},
    					Subnetwork: defaultSubnetwork.ID(),
    				},
    			},
    			Name:        pulumi.String("endpoint-instance"),
    			MachineType: pulumi.String("e2-medium"),
    			BootDisk: &compute.InstanceBootDiskArgs{
    				InitializeParams: &compute.InstanceBootDiskInitializeParamsArgs{
    					Image: pulumi.String(myImage.SelfLink),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = compute.NewNetworkEndpoint(ctx, "default-endpoint", &compute.NetworkEndpointArgs{
    			NetworkEndpointGroup: pulumi.Any(neg.Name),
    			Instance:             endpoint_instance.Name,
    			Port:                 pulumi.Any(neg.DefaultPort),
    			IpAddress: endpoint_instance.NetworkInterfaces.ApplyT(func(networkInterfaces []compute.InstanceNetworkInterface) (*string, error) {
    				return &networkInterfaces[0].NetworkIp, nil
    			}).(pulumi.StringPtrOutput),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = compute.NewNetworkEndpointGroup(ctx, "group", &compute.NetworkEndpointGroupArgs{
    			Name:        pulumi.String("my-lb-neg"),
    			Network:     _default.ID(),
    			Subnetwork:  defaultSubnetwork.ID(),
    			DefaultPort: pulumi.Int(90),
    			Zone:        pulumi.String("us-central1-a"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var myImage = Gcp.Compute.GetImage.Invoke(new()
        {
            Family = "debian-11",
            Project = "debian-cloud",
        });
    
        var @default = new Gcp.Compute.Network("default", new()
        {
            Name = "neg-network",
            AutoCreateSubnetworks = false,
        });
    
        var defaultSubnetwork = new Gcp.Compute.Subnetwork("default", new()
        {
            Name = "neg-subnetwork",
            IpCidrRange = "10.0.0.1/16",
            Region = "us-central1",
            Network = @default.Id,
        });
    
        var endpoint_instance = new Gcp.Compute.Instance("endpoint-instance", new()
        {
            NetworkInterfaces = new[]
            {
                new Gcp.Compute.Inputs.InstanceNetworkInterfaceArgs
                {
                    AccessConfigs = new[]
                    {
                        null,
                    },
                    Subnetwork = defaultSubnetwork.Id,
                },
            },
            Name = "endpoint-instance",
            MachineType = "e2-medium",
            BootDisk = new Gcp.Compute.Inputs.InstanceBootDiskArgs
            {
                InitializeParams = new Gcp.Compute.Inputs.InstanceBootDiskInitializeParamsArgs
                {
                    Image = myImage.Apply(getImageResult => getImageResult.SelfLink),
                },
            },
        });
    
        var default_endpoint = new Gcp.Compute.NetworkEndpoint("default-endpoint", new()
        {
            NetworkEndpointGroup = neg.Name,
            Instance = endpoint_instance.Name,
            Port = neg.DefaultPort,
            IpAddress = endpoint_instance.NetworkInterfaces.Apply(networkInterfaces => networkInterfaces[0].NetworkIp),
        });
    
        var @group = new Gcp.Compute.NetworkEndpointGroup("group", new()
        {
            Name = "my-lb-neg",
            Network = @default.Id,
            Subnetwork = defaultSubnetwork.Id,
            DefaultPort = 90,
            Zone = "us-central1-a",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.compute.ComputeFunctions;
    import com.pulumi.gcp.compute.inputs.GetImageArgs;
    import com.pulumi.gcp.compute.Network;
    import com.pulumi.gcp.compute.NetworkArgs;
    import com.pulumi.gcp.compute.Subnetwork;
    import com.pulumi.gcp.compute.SubnetworkArgs;
    import com.pulumi.gcp.compute.Instance;
    import com.pulumi.gcp.compute.InstanceArgs;
    import com.pulumi.gcp.compute.inputs.InstanceNetworkInterfaceArgs;
    import com.pulumi.gcp.compute.inputs.InstanceBootDiskArgs;
    import com.pulumi.gcp.compute.inputs.InstanceBootDiskInitializeParamsArgs;
    import com.pulumi.gcp.compute.NetworkEndpoint;
    import com.pulumi.gcp.compute.NetworkEndpointArgs;
    import com.pulumi.gcp.compute.NetworkEndpointGroup;
    import com.pulumi.gcp.compute.NetworkEndpointGroupArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var myImage = ComputeFunctions.getImage(GetImageArgs.builder()
                .family("debian-11")
                .project("debian-cloud")
                .build());
    
            var default_ = new Network("default", NetworkArgs.builder()        
                .name("neg-network")
                .autoCreateSubnetworks(false)
                .build());
    
            var defaultSubnetwork = new Subnetwork("defaultSubnetwork", SubnetworkArgs.builder()        
                .name("neg-subnetwork")
                .ipCidrRange("10.0.0.1/16")
                .region("us-central1")
                .network(default_.id())
                .build());
    
            var endpoint_instance = new Instance("endpoint-instance", InstanceArgs.builder()        
                .networkInterfaces(InstanceNetworkInterfaceArgs.builder()
                    .accessConfigs()
                    .subnetwork(defaultSubnetwork.id())
                    .build())
                .name("endpoint-instance")
                .machineType("e2-medium")
                .bootDisk(InstanceBootDiskArgs.builder()
                    .initializeParams(InstanceBootDiskInitializeParamsArgs.builder()
                        .image(myImage.applyValue(getImageResult -> getImageResult.selfLink()))
                        .build())
                    .build())
                .build());
    
            var default_endpoint = new NetworkEndpoint("default-endpoint", NetworkEndpointArgs.builder()        
                .networkEndpointGroup(neg.name())
                .instance(endpoint_instance.name())
                .port(neg.defaultPort())
                .ipAddress(endpoint_instance.networkInterfaces().applyValue(networkInterfaces -> networkInterfaces[0].networkIp()))
                .build());
    
            var group = new NetworkEndpointGroup("group", NetworkEndpointGroupArgs.builder()        
                .name("my-lb-neg")
                .network(default_.id())
                .subnetwork(defaultSubnetwork.id())
                .defaultPort("90")
                .zone("us-central1-a")
                .build());
    
        }
    }
    
    resources:
      default-endpoint:
        type: gcp:compute:NetworkEndpoint
        properties:
          networkEndpointGroup: ${neg.name}
          instance: ${["endpoint-instance"].name}
          port: ${neg.defaultPort}
          ipAddress: ${["endpoint-instance"].networkInterfaces[0].networkIp}
      endpoint-instance:
        type: gcp:compute:Instance
        properties:
          networkInterfaces:
            - accessConfigs:
                - {}
              subnetwork: ${defaultSubnetwork.id}
          name: endpoint-instance
          machineType: e2-medium
          bootDisk:
            initializeParams:
              image: ${myImage.selfLink}
      group:
        type: gcp:compute:NetworkEndpointGroup
        properties:
          name: my-lb-neg
          network: ${default.id}
          subnetwork: ${defaultSubnetwork.id}
          defaultPort: '90'
          zone: us-central1-a
      default:
        type: gcp:compute:Network
        properties:
          name: neg-network
          autoCreateSubnetworks: false
      defaultSubnetwork:
        type: gcp:compute:Subnetwork
        name: default
        properties:
          name: neg-subnetwork
          ipCidrRange: 10.0.0.1/16
          region: us-central1
          network: ${default.id}
    variables:
      myImage:
        fn::invoke:
          Function: gcp:compute:getImage
          Arguments:
            family: debian-11
            project: debian-cloud
    

    Create NetworkEndpoint Resource

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

    Constructor syntax

    new NetworkEndpoint(name: string, args: NetworkEndpointArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkEndpoint(resource_name: str,
                        args: NetworkEndpointArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkEndpoint(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        ip_address: Optional[str] = None,
                        network_endpoint_group: Optional[str] = None,
                        instance: Optional[str] = None,
                        port: Optional[int] = None,
                        project: Optional[str] = None,
                        zone: Optional[str] = None)
    func NewNetworkEndpoint(ctx *Context, name string, args NetworkEndpointArgs, opts ...ResourceOption) (*NetworkEndpoint, error)
    public NetworkEndpoint(string name, NetworkEndpointArgs args, CustomResourceOptions? opts = null)
    public NetworkEndpoint(String name, NetworkEndpointArgs args)
    public NetworkEndpoint(String name, NetworkEndpointArgs args, CustomResourceOptions options)
    
    type: gcp:compute:NetworkEndpoint
    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 NetworkEndpointArgs
    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 NetworkEndpointArgs
    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 NetworkEndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkEndpointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var networkEndpointResource = new Gcp.Compute.NetworkEndpoint("networkEndpointResource", new()
    {
        IpAddress = "string",
        NetworkEndpointGroup = "string",
        Instance = "string",
        Port = 0,
        Project = "string",
        Zone = "string",
    });
    
    example, err := compute.NewNetworkEndpoint(ctx, "networkEndpointResource", &compute.NetworkEndpointArgs{
    	IpAddress:            pulumi.String("string"),
    	NetworkEndpointGroup: pulumi.String("string"),
    	Instance:             pulumi.String("string"),
    	Port:                 pulumi.Int(0),
    	Project:              pulumi.String("string"),
    	Zone:                 pulumi.String("string"),
    })
    
    var networkEndpointResource = new NetworkEndpoint("networkEndpointResource", NetworkEndpointArgs.builder()        
        .ipAddress("string")
        .networkEndpointGroup("string")
        .instance("string")
        .port(0)
        .project("string")
        .zone("string")
        .build());
    
    network_endpoint_resource = gcp.compute.NetworkEndpoint("networkEndpointResource",
        ip_address="string",
        network_endpoint_group="string",
        instance="string",
        port=0,
        project="string",
        zone="string")
    
    const networkEndpointResource = new gcp.compute.NetworkEndpoint("networkEndpointResource", {
        ipAddress: "string",
        networkEndpointGroup: "string",
        instance: "string",
        port: 0,
        project: "string",
        zone: "string",
    });
    
    type: gcp:compute:NetworkEndpoint
    properties:
        instance: string
        ipAddress: string
        networkEndpointGroup: string
        port: 0
        project: string
        zone: string
    

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

    IpAddress string
    IPv4 address of network endpoint. The IP address must belong to a VM in GCE (either the primary IP or as part of an aliased IP range).
    NetworkEndpointGroup string
    The network endpoint group this endpoint is part of.


    Instance string
    The name for a specific VM instance that the IP address belongs to. This is required for network endpoints of type GCE_VM_IP_PORT. The instance must be in the same zone of network endpoint group.
    Port int
    Port number of network endpoint. Note port is required unless the Network Endpoint Group is created with the type of GCE_VM_IP
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Zone string
    Zone where the containing network endpoint group is located.
    IpAddress string
    IPv4 address of network endpoint. The IP address must belong to a VM in GCE (either the primary IP or as part of an aliased IP range).
    NetworkEndpointGroup string
    The network endpoint group this endpoint is part of.


    Instance string
    The name for a specific VM instance that the IP address belongs to. This is required for network endpoints of type GCE_VM_IP_PORT. The instance must be in the same zone of network endpoint group.
    Port int
    Port number of network endpoint. Note port is required unless the Network Endpoint Group is created with the type of GCE_VM_IP
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Zone string
    Zone where the containing network endpoint group is located.
    ipAddress String
    IPv4 address of network endpoint. The IP address must belong to a VM in GCE (either the primary IP or as part of an aliased IP range).
    networkEndpointGroup String
    The network endpoint group this endpoint is part of.


    instance String
    The name for a specific VM instance that the IP address belongs to. This is required for network endpoints of type GCE_VM_IP_PORT. The instance must be in the same zone of network endpoint group.
    port Integer
    Port number of network endpoint. Note port is required unless the Network Endpoint Group is created with the type of GCE_VM_IP
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    zone String
    Zone where the containing network endpoint group is located.
    ipAddress string
    IPv4 address of network endpoint. The IP address must belong to a VM in GCE (either the primary IP or as part of an aliased IP range).
    networkEndpointGroup string
    The network endpoint group this endpoint is part of.


    instance string
    The name for a specific VM instance that the IP address belongs to. This is required for network endpoints of type GCE_VM_IP_PORT. The instance must be in the same zone of network endpoint group.
    port number
    Port number of network endpoint. Note port is required unless the Network Endpoint Group is created with the type of GCE_VM_IP
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    zone string
    Zone where the containing network endpoint group is located.
    ip_address str
    IPv4 address of network endpoint. The IP address must belong to a VM in GCE (either the primary IP or as part of an aliased IP range).
    network_endpoint_group str
    The network endpoint group this endpoint is part of.


    instance str
    The name for a specific VM instance that the IP address belongs to. This is required for network endpoints of type GCE_VM_IP_PORT. The instance must be in the same zone of network endpoint group.
    port int
    Port number of network endpoint. Note port is required unless the Network Endpoint Group is created with the type of GCE_VM_IP
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    zone str
    Zone where the containing network endpoint group is located.
    ipAddress String
    IPv4 address of network endpoint. The IP address must belong to a VM in GCE (either the primary IP or as part of an aliased IP range).
    networkEndpointGroup String
    The network endpoint group this endpoint is part of.


    instance String
    The name for a specific VM instance that the IP address belongs to. This is required for network endpoints of type GCE_VM_IP_PORT. The instance must be in the same zone of network endpoint group.
    port Number
    Port number of network endpoint. Note port is required unless the Network Endpoint Group is created with the type of GCE_VM_IP
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    zone String
    Zone where the containing network endpoint group is located.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing NetworkEndpoint Resource

    Get an existing NetworkEndpoint 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?: NetworkEndpointState, opts?: CustomResourceOptions): NetworkEndpoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            instance: Optional[str] = None,
            ip_address: Optional[str] = None,
            network_endpoint_group: Optional[str] = None,
            port: Optional[int] = None,
            project: Optional[str] = None,
            zone: Optional[str] = None) -> NetworkEndpoint
    func GetNetworkEndpoint(ctx *Context, name string, id IDInput, state *NetworkEndpointState, opts ...ResourceOption) (*NetworkEndpoint, error)
    public static NetworkEndpoint Get(string name, Input<string> id, NetworkEndpointState? state, CustomResourceOptions? opts = null)
    public static NetworkEndpoint get(String name, Output<String> id, NetworkEndpointState 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.
    The following state arguments are supported:
    Instance string
    The name for a specific VM instance that the IP address belongs to. This is required for network endpoints of type GCE_VM_IP_PORT. The instance must be in the same zone of network endpoint group.
    IpAddress string
    IPv4 address of network endpoint. The IP address must belong to a VM in GCE (either the primary IP or as part of an aliased IP range).
    NetworkEndpointGroup string
    The network endpoint group this endpoint is part of.


    Port int
    Port number of network endpoint. Note port is required unless the Network Endpoint Group is created with the type of GCE_VM_IP
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Zone string
    Zone where the containing network endpoint group is located.
    Instance string
    The name for a specific VM instance that the IP address belongs to. This is required for network endpoints of type GCE_VM_IP_PORT. The instance must be in the same zone of network endpoint group.
    IpAddress string
    IPv4 address of network endpoint. The IP address must belong to a VM in GCE (either the primary IP or as part of an aliased IP range).
    NetworkEndpointGroup string
    The network endpoint group this endpoint is part of.


    Port int
    Port number of network endpoint. Note port is required unless the Network Endpoint Group is created with the type of GCE_VM_IP
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Zone string
    Zone where the containing network endpoint group is located.
    instance String
    The name for a specific VM instance that the IP address belongs to. This is required for network endpoints of type GCE_VM_IP_PORT. The instance must be in the same zone of network endpoint group.
    ipAddress String
    IPv4 address of network endpoint. The IP address must belong to a VM in GCE (either the primary IP or as part of an aliased IP range).
    networkEndpointGroup String
    The network endpoint group this endpoint is part of.


    port Integer
    Port number of network endpoint. Note port is required unless the Network Endpoint Group is created with the type of GCE_VM_IP
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    zone String
    Zone where the containing network endpoint group is located.
    instance string
    The name for a specific VM instance that the IP address belongs to. This is required for network endpoints of type GCE_VM_IP_PORT. The instance must be in the same zone of network endpoint group.
    ipAddress string
    IPv4 address of network endpoint. The IP address must belong to a VM in GCE (either the primary IP or as part of an aliased IP range).
    networkEndpointGroup string
    The network endpoint group this endpoint is part of.


    port number
    Port number of network endpoint. Note port is required unless the Network Endpoint Group is created with the type of GCE_VM_IP
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    zone string
    Zone where the containing network endpoint group is located.
    instance str
    The name for a specific VM instance that the IP address belongs to. This is required for network endpoints of type GCE_VM_IP_PORT. The instance must be in the same zone of network endpoint group.
    ip_address str
    IPv4 address of network endpoint. The IP address must belong to a VM in GCE (either the primary IP or as part of an aliased IP range).
    network_endpoint_group str
    The network endpoint group this endpoint is part of.


    port int
    Port number of network endpoint. Note port is required unless the Network Endpoint Group is created with the type of GCE_VM_IP
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    zone str
    Zone where the containing network endpoint group is located.
    instance String
    The name for a specific VM instance that the IP address belongs to. This is required for network endpoints of type GCE_VM_IP_PORT. The instance must be in the same zone of network endpoint group.
    ipAddress String
    IPv4 address of network endpoint. The IP address must belong to a VM in GCE (either the primary IP or as part of an aliased IP range).
    networkEndpointGroup String
    The network endpoint group this endpoint is part of.


    port Number
    Port number of network endpoint. Note port is required unless the Network Endpoint Group is created with the type of GCE_VM_IP
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    zone String
    Zone where the containing network endpoint group is located.

    Import

    NetworkEndpoint can be imported using any of these accepted formats:

    • projects/{{project}}/zones/{{zone}}/networkEndpointGroups/{{network_endpoint_group}}/{{instance}}/{{ip_address}}/{{port}}

    • {{project}}/{{zone}}/{{network_endpoint_group}}/{{instance}}/{{ip_address}}/{{port}}

    • {{zone}}/{{network_endpoint_group}}/{{instance}}/{{ip_address}}/{{port}}

    • {{network_endpoint_group}}/{{instance}}/{{ip_address}}/{{port}}

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

    $ pulumi import gcp:compute/networkEndpoint:NetworkEndpoint default projects/{{project}}/zones/{{zone}}/networkEndpointGroups/{{network_endpoint_group}}/{{instance}}/{{ip_address}}/{{port}}
    
    $ pulumi import gcp:compute/networkEndpoint:NetworkEndpoint default {{project}}/{{zone}}/{{network_endpoint_group}}/{{instance}}/{{ip_address}}/{{port}}
    
    $ pulumi import gcp:compute/networkEndpoint:NetworkEndpoint default {{zone}}/{{network_endpoint_group}}/{{instance}}/{{ip_address}}/{{port}}
    
    $ pulumi import gcp:compute/networkEndpoint:NetworkEndpoint default {{network_endpoint_group}}/{{instance}}/{{ip_address}}/{{port}}
    

    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.
    gcp logo
    Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi