1. Packages
  2. Vkcs Provider
  3. API Docs
  4. VpnaasEndpointGroup
vkcs 0.9.3 published on Tuesday, Apr 15, 2025 by vk-cs

vkcs.VpnaasEndpointGroup

Explore with Pulumi AI

vkcs logo
vkcs 0.9.3 published on Tuesday, Apr 15, 2025 by vk-cs

    Manages an Endpoint Group resource within VKCS.

    Example Usage

    Use Remote endpoint group

    import * as pulumi from "@pulumi/pulumi";
    import * as vkcs from "@pulumi/vkcs";
    
    const allowedHosts = new vkcs.VpnaasEndpointGroup("allowedHosts", {
        endpoints: [
            "10.2.0.0/24",
            "10.3.0.0/24",
        ],
        type: "cidr",
    });
    
    import pulumi
    import pulumi_vkcs as vkcs
    
    allowed_hosts = vkcs.VpnaasEndpointGroup("allowedHosts",
        endpoints=[
            "10.2.0.0/24",
            "10.3.0.0/24",
        ],
        type="cidr")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/vkcs/vkcs"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vkcs.NewVpnaasEndpointGroup(ctx, "allowedHosts", &vkcs.VpnaasEndpointGroupArgs{
    			Endpoints: pulumi.StringArray{
    				pulumi.String("10.2.0.0/24"),
    				pulumi.String("10.3.0.0/24"),
    			},
    			Type: pulumi.String("cidr"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Vkcs = Pulumi.Vkcs;
    
    return await Deployment.RunAsync(() => 
    {
        var allowedHosts = new Vkcs.VpnaasEndpointGroup("allowedHosts", new()
        {
            Endpoints = new[]
            {
                "10.2.0.0/24",
                "10.3.0.0/24",
            },
            Type = "cidr",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vkcs.VpnaasEndpointGroup;
    import com.pulumi.vkcs.VpnaasEndpointGroupArgs;
    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 allowedHosts = new VpnaasEndpointGroup("allowedHosts", VpnaasEndpointGroupArgs.builder()
                .endpoints(            
                    "10.2.0.0/24",
                    "10.3.0.0/24")
                .type("cidr")
                .build());
    
        }
    }
    
    resources:
      allowedHosts:
        type: vkcs:VpnaasEndpointGroup
        properties:
          endpoints:
            - 10.2.0.0/24
            - 10.3.0.0/24
          type: cidr
    

    Use Local (private) endpoint group

    import * as pulumi from "@pulumi/pulumi";
    import * as vkcs from "@pulumi/vkcs";
    
    const subnetHosts = new vkcs.VpnaasEndpointGroup("subnetHosts", {
        type: "subnet",
        endpoints: [vkcs_networking_subnet.app.id],
        sdn: "neutron",
    });
    
    import pulumi
    import pulumi_vkcs as vkcs
    
    subnet_hosts = vkcs.VpnaasEndpointGroup("subnetHosts",
        type="subnet",
        endpoints=[vkcs_networking_subnet["app"]["id"]],
        sdn="neutron")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/vkcs/vkcs"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vkcs.NewVpnaasEndpointGroup(ctx, "subnetHosts", &vkcs.VpnaasEndpointGroupArgs{
    			Type: pulumi.String("subnet"),
    			Endpoints: pulumi.StringArray{
    				vkcs_networking_subnet.App.Id,
    			},
    			Sdn: pulumi.String("neutron"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Vkcs = Pulumi.Vkcs;
    
    return await Deployment.RunAsync(() => 
    {
        var subnetHosts = new Vkcs.VpnaasEndpointGroup("subnetHosts", new()
        {
            Type = "subnet",
            Endpoints = new[]
            {
                vkcs_networking_subnet.App.Id,
            },
            Sdn = "neutron",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vkcs.VpnaasEndpointGroup;
    import com.pulumi.vkcs.VpnaasEndpointGroupArgs;
    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 subnetHosts = new VpnaasEndpointGroup("subnetHosts", VpnaasEndpointGroupArgs.builder()
                .type("subnet")
                .endpoints(vkcs_networking_subnet.app().id())
                .sdn("neutron")
                .build());
    
        }
    }
    
    resources:
      subnetHosts:
        type: vkcs:VpnaasEndpointGroup
        properties:
          type: subnet
          endpoints:
            - ${vkcs_networking_subnet.app.id}
          sdn: neutron
    

    Create VpnaasEndpointGroup Resource

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

    Constructor syntax

    new VpnaasEndpointGroup(name: string, args?: VpnaasEndpointGroupArgs, opts?: CustomResourceOptions);
    @overload
    def VpnaasEndpointGroup(resource_name: str,
                            args: Optional[VpnaasEndpointGroupArgs] = None,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def VpnaasEndpointGroup(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            description: Optional[str] = None,
                            endpoints: Optional[Sequence[str]] = None,
                            name: Optional[str] = None,
                            region: Optional[str] = None,
                            sdn: Optional[str] = None,
                            timeouts: Optional[VpnaasEndpointGroupTimeoutsArgs] = None,
                            type: Optional[str] = None,
                            vpnaas_endpoint_group_id: Optional[str] = None)
    func NewVpnaasEndpointGroup(ctx *Context, name string, args *VpnaasEndpointGroupArgs, opts ...ResourceOption) (*VpnaasEndpointGroup, error)
    public VpnaasEndpointGroup(string name, VpnaasEndpointGroupArgs? args = null, CustomResourceOptions? opts = null)
    public VpnaasEndpointGroup(String name, VpnaasEndpointGroupArgs args)
    public VpnaasEndpointGroup(String name, VpnaasEndpointGroupArgs args, CustomResourceOptions options)
    
    type: vkcs:VpnaasEndpointGroup
    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 VpnaasEndpointGroupArgs
    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 VpnaasEndpointGroupArgs
    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 VpnaasEndpointGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VpnaasEndpointGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VpnaasEndpointGroupArgs
    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 vpnaasEndpointGroupResource = new Vkcs.VpnaasEndpointGroup("vpnaasEndpointGroupResource", new()
    {
        Description = "string",
        Endpoints = new[]
        {
            "string",
        },
        Name = "string",
        Region = "string",
        Sdn = "string",
        Timeouts = new Vkcs.Inputs.VpnaasEndpointGroupTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        Type = "string",
        VpnaasEndpointGroupId = "string",
    });
    
    example, err := vkcs.NewVpnaasEndpointGroup(ctx, "vpnaasEndpointGroupResource", &vkcs.VpnaasEndpointGroupArgs{
    	Description: pulumi.String("string"),
    	Endpoints: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Name:   pulumi.String("string"),
    	Region: pulumi.String("string"),
    	Sdn:    pulumi.String("string"),
    	Timeouts: &vkcs.VpnaasEndpointGroupTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	Type:                  pulumi.String("string"),
    	VpnaasEndpointGroupId: pulumi.String("string"),
    })
    
    var vpnaasEndpointGroupResource = new VpnaasEndpointGroup("vpnaasEndpointGroupResource", VpnaasEndpointGroupArgs.builder()
        .description("string")
        .endpoints("string")
        .name("string")
        .region("string")
        .sdn("string")
        .timeouts(VpnaasEndpointGroupTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .type("string")
        .vpnaasEndpointGroupId("string")
        .build());
    
    vpnaas_endpoint_group_resource = vkcs.VpnaasEndpointGroup("vpnaasEndpointGroupResource",
        description="string",
        endpoints=["string"],
        name="string",
        region="string",
        sdn="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        type="string",
        vpnaas_endpoint_group_id="string")
    
    const vpnaasEndpointGroupResource = new vkcs.VpnaasEndpointGroup("vpnaasEndpointGroupResource", {
        description: "string",
        endpoints: ["string"],
        name: "string",
        region: "string",
        sdn: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        type: "string",
        vpnaasEndpointGroupId: "string",
    });
    
    type: vkcs:VpnaasEndpointGroup
    properties:
        description: string
        endpoints:
            - string
        name: string
        region: string
        sdn: string
        timeouts:
            create: string
            delete: string
            update: string
        type: string
        vpnaasEndpointGroupId: string
    

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

    Description string
    optional string → The human-readable description for the group. Changing this updates the description of the existing group.
    Endpoints List<string>
    optional set of string → List of endpoints of the same type, for the endpoint group. The values will depend on the type. Changing this creates a new group.
    Name string
    optional string → The name of the group. Changing this updates the name of the existing group.
    Region string
    optional string → The region in which to obtain the Networking client. A Networking client is needed to create an endpoint group. If omitted, the region argument of the provider is used. Changing this creates a new group.
    Sdn string
    optional string → SDN to use for this resource. Must be one of following: "neutron", "sprut". Default value is project's default SDN.New since v0.5.3.
    Timeouts VpnaasEndpointGroupTimeouts
    Type string
    optional string → The type of the endpoints in the group. A valid value is subnet and cidr. For sprut SDN only cidr can be used, for neutron SDN - cidr for remote group, subnet for local. Changing this creates a new group.
    VpnaasEndpointGroupId string
    string → ID of the resource.
    Description string
    optional string → The human-readable description for the group. Changing this updates the description of the existing group.
    Endpoints []string
    optional set of string → List of endpoints of the same type, for the endpoint group. The values will depend on the type. Changing this creates a new group.
    Name string
    optional string → The name of the group. Changing this updates the name of the existing group.
    Region string
    optional string → The region in which to obtain the Networking client. A Networking client is needed to create an endpoint group. If omitted, the region argument of the provider is used. Changing this creates a new group.
    Sdn string
    optional string → SDN to use for this resource. Must be one of following: "neutron", "sprut". Default value is project's default SDN.New since v0.5.3.
    Timeouts VpnaasEndpointGroupTimeoutsArgs
    Type string
    optional string → The type of the endpoints in the group. A valid value is subnet and cidr. For sprut SDN only cidr can be used, for neutron SDN - cidr for remote group, subnet for local. Changing this creates a new group.
    VpnaasEndpointGroupId string
    string → ID of the resource.
    description String
    optional string → The human-readable description for the group. Changing this updates the description of the existing group.
    endpoints List<String>
    optional set of string → List of endpoints of the same type, for the endpoint group. The values will depend on the type. Changing this creates a new group.
    name String
    optional string → The name of the group. Changing this updates the name of the existing group.
    region String
    optional string → The region in which to obtain the Networking client. A Networking client is needed to create an endpoint group. If omitted, the region argument of the provider is used. Changing this creates a new group.
    sdn String
    optional string → SDN to use for this resource. Must be one of following: "neutron", "sprut". Default value is project's default SDN.New since v0.5.3.
    timeouts VpnaasEndpointGroupTimeouts
    type String
    optional string → The type of the endpoints in the group. A valid value is subnet and cidr. For sprut SDN only cidr can be used, for neutron SDN - cidr for remote group, subnet for local. Changing this creates a new group.
    vpnaasEndpointGroupId String
    string → ID of the resource.
    description string
    optional string → The human-readable description for the group. Changing this updates the description of the existing group.
    endpoints string[]
    optional set of string → List of endpoints of the same type, for the endpoint group. The values will depend on the type. Changing this creates a new group.
    name string
    optional string → The name of the group. Changing this updates the name of the existing group.
    region string
    optional string → The region in which to obtain the Networking client. A Networking client is needed to create an endpoint group. If omitted, the region argument of the provider is used. Changing this creates a new group.
    sdn string
    optional string → SDN to use for this resource. Must be one of following: "neutron", "sprut". Default value is project's default SDN.New since v0.5.3.
    timeouts VpnaasEndpointGroupTimeouts
    type string
    optional string → The type of the endpoints in the group. A valid value is subnet and cidr. For sprut SDN only cidr can be used, for neutron SDN - cidr for remote group, subnet for local. Changing this creates a new group.
    vpnaasEndpointGroupId string
    string → ID of the resource.
    description str
    optional string → The human-readable description for the group. Changing this updates the description of the existing group.
    endpoints Sequence[str]
    optional set of string → List of endpoints of the same type, for the endpoint group. The values will depend on the type. Changing this creates a new group.
    name str
    optional string → The name of the group. Changing this updates the name of the existing group.
    region str
    optional string → The region in which to obtain the Networking client. A Networking client is needed to create an endpoint group. If omitted, the region argument of the provider is used. Changing this creates a new group.
    sdn str
    optional string → SDN to use for this resource. Must be one of following: "neutron", "sprut". Default value is project's default SDN.New since v0.5.3.
    timeouts VpnaasEndpointGroupTimeoutsArgs
    type str
    optional string → The type of the endpoints in the group. A valid value is subnet and cidr. For sprut SDN only cidr can be used, for neutron SDN - cidr for remote group, subnet for local. Changing this creates a new group.
    vpnaas_endpoint_group_id str
    string → ID of the resource.
    description String
    optional string → The human-readable description for the group. Changing this updates the description of the existing group.
    endpoints List<String>
    optional set of string → List of endpoints of the same type, for the endpoint group. The values will depend on the type. Changing this creates a new group.
    name String
    optional string → The name of the group. Changing this updates the name of the existing group.
    region String
    optional string → The region in which to obtain the Networking client. A Networking client is needed to create an endpoint group. If omitted, the region argument of the provider is used. Changing this creates a new group.
    sdn String
    optional string → SDN to use for this resource. Must be one of following: "neutron", "sprut". Default value is project's default SDN.New since v0.5.3.
    timeouts Property Map
    type String
    optional string → The type of the endpoints in the group. A valid value is subnet and cidr. For sprut SDN only cidr can be used, for neutron SDN - cidr for remote group, subnet for local. Changing this creates a new group.
    vpnaasEndpointGroupId String
    string → ID of the resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the VpnaasEndpointGroup 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 VpnaasEndpointGroup Resource

    Get an existing VpnaasEndpointGroup 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?: VpnaasEndpointGroupState, opts?: CustomResourceOptions): VpnaasEndpointGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            endpoints: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            region: Optional[str] = None,
            sdn: Optional[str] = None,
            timeouts: Optional[VpnaasEndpointGroupTimeoutsArgs] = None,
            type: Optional[str] = None,
            vpnaas_endpoint_group_id: Optional[str] = None) -> VpnaasEndpointGroup
    func GetVpnaasEndpointGroup(ctx *Context, name string, id IDInput, state *VpnaasEndpointGroupState, opts ...ResourceOption) (*VpnaasEndpointGroup, error)
    public static VpnaasEndpointGroup Get(string name, Input<string> id, VpnaasEndpointGroupState? state, CustomResourceOptions? opts = null)
    public static VpnaasEndpointGroup get(String name, Output<String> id, VpnaasEndpointGroupState state, CustomResourceOptions options)
    resources:  _:    type: vkcs:VpnaasEndpointGroup    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.
    The following state arguments are supported:
    Description string
    optional string → The human-readable description for the group. Changing this updates the description of the existing group.
    Endpoints List<string>
    optional set of string → List of endpoints of the same type, for the endpoint group. The values will depend on the type. Changing this creates a new group.
    Name string
    optional string → The name of the group. Changing this updates the name of the existing group.
    Region string
    optional string → The region in which to obtain the Networking client. A Networking client is needed to create an endpoint group. If omitted, the region argument of the provider is used. Changing this creates a new group.
    Sdn string
    optional string → SDN to use for this resource. Must be one of following: "neutron", "sprut". Default value is project's default SDN.New since v0.5.3.
    Timeouts VpnaasEndpointGroupTimeouts
    Type string
    optional string → The type of the endpoints in the group. A valid value is subnet and cidr. For sprut SDN only cidr can be used, for neutron SDN - cidr for remote group, subnet for local. Changing this creates a new group.
    VpnaasEndpointGroupId string
    string → ID of the resource.
    Description string
    optional string → The human-readable description for the group. Changing this updates the description of the existing group.
    Endpoints []string
    optional set of string → List of endpoints of the same type, for the endpoint group. The values will depend on the type. Changing this creates a new group.
    Name string
    optional string → The name of the group. Changing this updates the name of the existing group.
    Region string
    optional string → The region in which to obtain the Networking client. A Networking client is needed to create an endpoint group. If omitted, the region argument of the provider is used. Changing this creates a new group.
    Sdn string
    optional string → SDN to use for this resource. Must be one of following: "neutron", "sprut". Default value is project's default SDN.New since v0.5.3.
    Timeouts VpnaasEndpointGroupTimeoutsArgs
    Type string
    optional string → The type of the endpoints in the group. A valid value is subnet and cidr. For sprut SDN only cidr can be used, for neutron SDN - cidr for remote group, subnet for local. Changing this creates a new group.
    VpnaasEndpointGroupId string
    string → ID of the resource.
    description String
    optional string → The human-readable description for the group. Changing this updates the description of the existing group.
    endpoints List<String>
    optional set of string → List of endpoints of the same type, for the endpoint group. The values will depend on the type. Changing this creates a new group.
    name String
    optional string → The name of the group. Changing this updates the name of the existing group.
    region String
    optional string → The region in which to obtain the Networking client. A Networking client is needed to create an endpoint group. If omitted, the region argument of the provider is used. Changing this creates a new group.
    sdn String
    optional string → SDN to use for this resource. Must be one of following: "neutron", "sprut". Default value is project's default SDN.New since v0.5.3.
    timeouts VpnaasEndpointGroupTimeouts
    type String
    optional string → The type of the endpoints in the group. A valid value is subnet and cidr. For sprut SDN only cidr can be used, for neutron SDN - cidr for remote group, subnet for local. Changing this creates a new group.
    vpnaasEndpointGroupId String
    string → ID of the resource.
    description string
    optional string → The human-readable description for the group. Changing this updates the description of the existing group.
    endpoints string[]
    optional set of string → List of endpoints of the same type, for the endpoint group. The values will depend on the type. Changing this creates a new group.
    name string
    optional string → The name of the group. Changing this updates the name of the existing group.
    region string
    optional string → The region in which to obtain the Networking client. A Networking client is needed to create an endpoint group. If omitted, the region argument of the provider is used. Changing this creates a new group.
    sdn string
    optional string → SDN to use for this resource. Must be one of following: "neutron", "sprut". Default value is project's default SDN.New since v0.5.3.
    timeouts VpnaasEndpointGroupTimeouts
    type string
    optional string → The type of the endpoints in the group. A valid value is subnet and cidr. For sprut SDN only cidr can be used, for neutron SDN - cidr for remote group, subnet for local. Changing this creates a new group.
    vpnaasEndpointGroupId string
    string → ID of the resource.
    description str
    optional string → The human-readable description for the group. Changing this updates the description of the existing group.
    endpoints Sequence[str]
    optional set of string → List of endpoints of the same type, for the endpoint group. The values will depend on the type. Changing this creates a new group.
    name str
    optional string → The name of the group. Changing this updates the name of the existing group.
    region str
    optional string → The region in which to obtain the Networking client. A Networking client is needed to create an endpoint group. If omitted, the region argument of the provider is used. Changing this creates a new group.
    sdn str
    optional string → SDN to use for this resource. Must be one of following: "neutron", "sprut". Default value is project's default SDN.New since v0.5.3.
    timeouts VpnaasEndpointGroupTimeoutsArgs
    type str
    optional string → The type of the endpoints in the group. A valid value is subnet and cidr. For sprut SDN only cidr can be used, for neutron SDN - cidr for remote group, subnet for local. Changing this creates a new group.
    vpnaas_endpoint_group_id str
    string → ID of the resource.
    description String
    optional string → The human-readable description for the group. Changing this updates the description of the existing group.
    endpoints List<String>
    optional set of string → List of endpoints of the same type, for the endpoint group. The values will depend on the type. Changing this creates a new group.
    name String
    optional string → The name of the group. Changing this updates the name of the existing group.
    region String
    optional string → The region in which to obtain the Networking client. A Networking client is needed to create an endpoint group. If omitted, the region argument of the provider is used. Changing this creates a new group.
    sdn String
    optional string → SDN to use for this resource. Must be one of following: "neutron", "sprut". Default value is project's default SDN.New since v0.5.3.
    timeouts Property Map
    type String
    optional string → The type of the endpoints in the group. A valid value is subnet and cidr. For sprut SDN only cidr can be used, for neutron SDN - cidr for remote group, subnet for local. Changing this creates a new group.
    vpnaasEndpointGroupId String
    string → ID of the resource.

    Supporting Types

    VpnaasEndpointGroupTimeouts, VpnaasEndpointGroupTimeoutsArgs

    Create string
    Delete string
    Update string
    Create string
    Delete string
    Update string
    create String
    delete String
    update String
    create string
    delete string
    update string
    create str
    delete str
    update str
    create String
    delete String
    update String

    Import

    Groups can be imported using the id, e.g.

    $ pulumi import vkcs:index/vpnaasEndpointGroup:VpnaasEndpointGroup group_1 832cb7f3-59fe-40cf-8f64-8350ffc03272
    

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

    Package Details

    Repository
    vkcs vk-cs/terraform-provider-vkcs
    License
    Notes
    This Pulumi package is based on the vkcs Terraform Provider.
    vkcs logo
    vkcs 0.9.3 published on Tuesday, Apr 15, 2025 by vk-cs