1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. vpc
  5. RouteEntry
Alibaba Cloud v3.66.0 published on Friday, Nov 15, 2024 by Pulumi

alicloud.vpc.RouteEntry

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.66.0 published on Friday, Nov 15, 2024 by Pulumi

    Provides a Route Entry resource. A Route Entry represents a route item of one VPC Route Table.

    For information about Route Entry and how to use it, see What is Route Entry.

    NOTE: Available since v0.1.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "terraform-example";
    const default = alicloud.getZones({
        availableDiskCategory: "cloud_efficiency",
        availableResourceCreation: "VSwitch",
    });
    const defaultGetImages = alicloud.ecs.getImages({
        mostRecent: true,
        owners: "system",
    });
    const defaultGetInstanceTypes = Promise.all([_default, defaultGetImages]).then(([_default, defaultGetImages]) => alicloud.ecs.getInstanceTypes({
        availabilityZone: _default.zones?.[0]?.id,
        imageId: defaultGetImages.images?.[0]?.id,
    }));
    const defaultNetwork = new alicloud.vpc.Network("default", {
        vpcName: name,
        cidrBlock: "192.168.0.0/16",
    });
    const defaultSwitch = new alicloud.vpc.Switch("default", {
        vswitchName: name,
        vpcId: defaultNetwork.id,
        cidrBlock: "192.168.192.0/24",
        zoneId: _default.then(_default => _default.zones?.[0]?.id),
    });
    const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("default", {
        name: name,
        vpcId: defaultNetwork.id,
    });
    const defaultInstance = new alicloud.ecs.Instance("default", {
        imageId: defaultGetImages.then(defaultGetImages => defaultGetImages.images?.[0]?.id),
        instanceType: defaultGetInstanceTypes.then(defaultGetInstanceTypes => defaultGetInstanceTypes.instanceTypes?.[0]?.id),
        securityGroups: [defaultSecurityGroup].map(__item => __item.id),
        internetChargeType: "PayByTraffic",
        internetMaxBandwidthOut: 10,
        availabilityZone: defaultGetInstanceTypes.then(defaultGetInstanceTypes => defaultGetInstanceTypes.instanceTypes?.[0]?.availabilityZones?.[0]),
        instanceChargeType: "PostPaid",
        systemDiskCategory: "cloud_efficiency",
        vswitchId: defaultSwitch.id,
        instanceName: name,
    });
    const foo = new alicloud.vpc.RouteEntry("foo", {
        routeTableId: defaultNetwork.routeTableId,
        destinationCidrblock: "172.11.1.1/32",
        nexthopType: "Instance",
        nexthopId: defaultInstance.id,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    default = alicloud.get_zones(available_disk_category="cloud_efficiency",
        available_resource_creation="VSwitch")
    default_get_images = alicloud.ecs.get_images(most_recent=True,
        owners="system")
    default_get_instance_types = alicloud.ecs.get_instance_types(availability_zone=default.zones[0].id,
        image_id=default_get_images.images[0].id)
    default_network = alicloud.vpc.Network("default",
        vpc_name=name,
        cidr_block="192.168.0.0/16")
    default_switch = alicloud.vpc.Switch("default",
        vswitch_name=name,
        vpc_id=default_network.id,
        cidr_block="192.168.192.0/24",
        zone_id=default.zones[0].id)
    default_security_group = alicloud.ecs.SecurityGroup("default",
        name=name,
        vpc_id=default_network.id)
    default_instance = alicloud.ecs.Instance("default",
        image_id=default_get_images.images[0].id,
        instance_type=default_get_instance_types.instance_types[0].id,
        security_groups=[__item.id for __item in [default_security_group]],
        internet_charge_type="PayByTraffic",
        internet_max_bandwidth_out=10,
        availability_zone=default_get_instance_types.instance_types[0].availability_zones[0],
        instance_charge_type="PostPaid",
        system_disk_category="cloud_efficiency",
        vswitch_id=default_switch.id,
        instance_name=name)
    foo = alicloud.vpc.RouteEntry("foo",
        route_table_id=default_network.route_table_id,
        destination_cidrblock="172.11.1.1/32",
        nexthop_type="Instance",
        nexthop_id=default_instance.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
    cfg := config.New(ctx, "")
    name := "terraform-example";
    if param := cfg.Get("name"); param != ""{
    name = param
    }
    _default, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
    AvailableDiskCategory: pulumi.StringRef("cloud_efficiency"),
    AvailableResourceCreation: pulumi.StringRef("VSwitch"),
    }, nil);
    if err != nil {
    return err
    }
    defaultGetImages, err := ecs.GetImages(ctx, &ecs.GetImagesArgs{
    MostRecent: pulumi.BoolRef(true),
    Owners: pulumi.StringRef("system"),
    }, nil);
    if err != nil {
    return err
    }
    defaultGetInstanceTypes, err := ecs.GetInstanceTypes(ctx, &ecs.GetInstanceTypesArgs{
    AvailabilityZone: pulumi.StringRef(_default.Zones[0].Id),
    ImageId: pulumi.StringRef(defaultGetImages.Images[0].Id),
    }, nil);
    if err != nil {
    return err
    }
    defaultNetwork, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
    VpcName: pulumi.String(name),
    CidrBlock: pulumi.String("192.168.0.0/16"),
    })
    if err != nil {
    return err
    }
    defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
    VswitchName: pulumi.String(name),
    VpcId: defaultNetwork.ID(),
    CidrBlock: pulumi.String("192.168.192.0/24"),
    ZoneId: pulumi.String(_default.Zones[0].Id),
    })
    if err != nil {
    return err
    }
    defaultSecurityGroup, err := ecs.NewSecurityGroup(ctx, "default", &ecs.SecurityGroupArgs{
    Name: pulumi.String(name),
    VpcId: defaultNetwork.ID(),
    })
    if err != nil {
    return err
    }
    var splat0 pulumi.StringArray
    for _, val0 := range %!v(PANIC=Format method: fatal: An assertion has failed: tok: ) {
    splat0 = append(splat0, val0.ID())
    }
    defaultInstance, err := ecs.NewInstance(ctx, "default", &ecs.InstanceArgs{
    ImageId: pulumi.String(defaultGetImages.Images[0].Id),
    InstanceType: pulumi.String(defaultGetInstanceTypes.InstanceTypes[0].Id),
    SecurityGroups: splat0,
    InternetChargeType: pulumi.String("PayByTraffic"),
    InternetMaxBandwidthOut: pulumi.Int(10),
    AvailabilityZone: pulumi.String(defaultGetInstanceTypes.InstanceTypes[0].AvailabilityZones[0]),
    InstanceChargeType: pulumi.String("PostPaid"),
    SystemDiskCategory: pulumi.String("cloud_efficiency"),
    VswitchId: defaultSwitch.ID(),
    InstanceName: pulumi.String(name),
    })
    if err != nil {
    return err
    }
    _, err = vpc.NewRouteEntry(ctx, "foo", &vpc.RouteEntryArgs{
    RouteTableId: defaultNetwork.RouteTableId,
    DestinationCidrblock: pulumi.String("172.11.1.1/32"),
    NexthopType: pulumi.String("Instance"),
    NexthopId: defaultInstance.ID(),
    })
    if err != nil {
    return err
    }
    return nil
    })
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "terraform-example";
        var @default = AliCloud.GetZones.Invoke(new()
        {
            AvailableDiskCategory = "cloud_efficiency",
            AvailableResourceCreation = "VSwitch",
        });
    
        var defaultGetImages = AliCloud.Ecs.GetImages.Invoke(new()
        {
            MostRecent = true,
            Owners = "system",
        });
    
        var defaultGetInstanceTypes = AliCloud.Ecs.GetInstanceTypes.Invoke(new()
        {
            AvailabilityZone = @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
            ImageId = defaultGetImages.Apply(getImagesResult => getImagesResult.Images[0]?.Id),
        });
    
        var defaultNetwork = new AliCloud.Vpc.Network("default", new()
        {
            VpcName = name,
            CidrBlock = "192.168.0.0/16",
        });
    
        var defaultSwitch = new AliCloud.Vpc.Switch("default", new()
        {
            VswitchName = name,
            VpcId = defaultNetwork.Id,
            CidrBlock = "192.168.192.0/24",
            ZoneId = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id)),
        });
    
        var defaultSecurityGroup = new AliCloud.Ecs.SecurityGroup("default", new()
        {
            Name = name,
            VpcId = defaultNetwork.Id,
        });
    
        var defaultInstance = new AliCloud.Ecs.Instance("default", new()
        {
            ImageId = defaultGetImages.Apply(getImagesResult => getImagesResult.Images[0]?.Id),
            InstanceType = defaultGetInstanceTypes.Apply(getInstanceTypesResult => getInstanceTypesResult.InstanceTypes[0]?.Id),
            SecurityGroups = new[]
            {
                defaultSecurityGroup,
            }.Select(__item => __item.Id).ToList(),
            InternetChargeType = "PayByTraffic",
            InternetMaxBandwidthOut = 10,
            AvailabilityZone = defaultGetInstanceTypes.Apply(getInstanceTypesResult => getInstanceTypesResult.InstanceTypes[0]?.AvailabilityZones[0]),
            InstanceChargeType = "PostPaid",
            SystemDiskCategory = "cloud_efficiency",
            VswitchId = defaultSwitch.Id,
            InstanceName = name,
        });
    
        var foo = new AliCloud.Vpc.RouteEntry("foo", new()
        {
            RouteTableId = defaultNetwork.RouteTableId,
            DestinationCidrblock = "172.11.1.1/32",
            NexthopType = "Instance",
            NexthopId = defaultInstance.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.AlicloudFunctions;
    import com.pulumi.alicloud.inputs.GetZonesArgs;
    import com.pulumi.alicloud.ecs.EcsFunctions;
    import com.pulumi.alicloud.ecs.inputs.GetImagesArgs;
    import com.pulumi.alicloud.ecs.inputs.GetInstanceTypesArgs;
    import com.pulumi.alicloud.vpc.Network;
    import com.pulumi.alicloud.vpc.NetworkArgs;
    import com.pulumi.alicloud.vpc.Switch;
    import com.pulumi.alicloud.vpc.SwitchArgs;
    import com.pulumi.alicloud.ecs.SecurityGroup;
    import com.pulumi.alicloud.ecs.SecurityGroupArgs;
    import com.pulumi.alicloud.ecs.Instance;
    import com.pulumi.alicloud.ecs.InstanceArgs;
    import com.pulumi.alicloud.vpc.RouteEntry;
    import com.pulumi.alicloud.vpc.RouteEntryArgs;
    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 config = ctx.config();
            final var name = config.get("name").orElse("terraform-example");
            final var default = AlicloudFunctions.getZones(GetZonesArgs.builder()
                .availableDiskCategory("cloud_efficiency")
                .availableResourceCreation("VSwitch")
                .build());
    
            final var defaultGetImages = EcsFunctions.getImages(GetImagesArgs.builder()
                .mostRecent(true)
                .owners("system")
                .build());
    
            final var defaultGetInstanceTypes = EcsFunctions.getInstanceTypes(GetInstanceTypesArgs.builder()
                .availabilityZone(default_.zones()[0].id())
                .imageId(defaultGetImages.applyValue(getImagesResult -> getImagesResult.images()[0].id()))
                .build());
    
            var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
                .vpcName(name)
                .cidrBlock("192.168.0.0/16")
                .build());
    
            var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
                .vswitchName(name)
                .vpcId(defaultNetwork.id())
                .cidrBlock("192.168.192.0/24")
                .zoneId(default_.zones()[0].id())
                .build());
    
            var defaultSecurityGroup = new SecurityGroup("defaultSecurityGroup", SecurityGroupArgs.builder()
                .name(name)
                .vpcId(defaultNetwork.id())
                .build());
    
            var defaultInstance = new Instance("defaultInstance", InstanceArgs.builder()
                .imageId(defaultGetImages.applyValue(getImagesResult -> getImagesResult.images()[0].id()))
                .instanceType(defaultGetInstanceTypes.applyValue(getInstanceTypesResult -> getInstanceTypesResult.instanceTypes()[0].id()))
                .securityGroups(defaultSecurityGroup.stream().map(element -> element.id()).collect(toList()))
                .internetChargeType("PayByTraffic")
                .internetMaxBandwidthOut("10")
                .availabilityZone(defaultGetInstanceTypes.applyValue(getInstanceTypesResult -> getInstanceTypesResult.instanceTypes()[0].availabilityZones()[0]))
                .instanceChargeType("PostPaid")
                .systemDiskCategory("cloud_efficiency")
                .vswitchId(defaultSwitch.id())
                .instanceName(name)
                .build());
    
            var foo = new RouteEntry("foo", RouteEntryArgs.builder()
                .routeTableId(defaultNetwork.routeTableId())
                .destinationCidrblock("172.11.1.1/32")
                .nexthopType("Instance")
                .nexthopId(defaultInstance.id())
                .build());
    
        }
    }
    
    Coming soon!
    

    Module Support

    You can use to the existing vpc module to create a VPC, several VSwitches and add several route entries one-click.

    Create RouteEntry Resource

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

    Constructor syntax

    new RouteEntry(name: string, args: RouteEntryArgs, opts?: CustomResourceOptions);
    @overload
    def RouteEntry(resource_name: str,
                   args: RouteEntryArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def RouteEntry(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   route_table_id: Optional[str] = None,
                   description: Optional[str] = None,
                   destination_cidrblock: Optional[str] = None,
                   name: Optional[str] = None,
                   nexthop_id: Optional[str] = None,
                   nexthop_type: Optional[str] = None)
    func NewRouteEntry(ctx *Context, name string, args RouteEntryArgs, opts ...ResourceOption) (*RouteEntry, error)
    public RouteEntry(string name, RouteEntryArgs args, CustomResourceOptions? opts = null)
    public RouteEntry(String name, RouteEntryArgs args)
    public RouteEntry(String name, RouteEntryArgs args, CustomResourceOptions options)
    
    type: alicloud:vpc:RouteEntry
    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 RouteEntryArgs
    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 RouteEntryArgs
    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 RouteEntryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RouteEntryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RouteEntryArgs
    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 alicloudRouteEntryResource = new AliCloud.Vpc.RouteEntry("alicloudRouteEntryResource", new()
    {
        RouteTableId = "string",
        Description = "string",
        DestinationCidrblock = "string",
        Name = "string",
        NexthopId = "string",
        NexthopType = "string",
    });
    
    example, err := vpc.NewRouteEntry(ctx, "alicloudRouteEntryResource", &vpc.RouteEntryArgs{
    	RouteTableId:         pulumi.String("string"),
    	Description:          pulumi.String("string"),
    	DestinationCidrblock: pulumi.String("string"),
    	Name:                 pulumi.String("string"),
    	NexthopId:            pulumi.String("string"),
    	NexthopType:          pulumi.String("string"),
    })
    
    var alicloudRouteEntryResource = new RouteEntry("alicloudRouteEntryResource", RouteEntryArgs.builder()
        .routeTableId("string")
        .description("string")
        .destinationCidrblock("string")
        .name("string")
        .nexthopId("string")
        .nexthopType("string")
        .build());
    
    alicloud_route_entry_resource = alicloud.vpc.RouteEntry("alicloudRouteEntryResource",
        route_table_id="string",
        description="string",
        destination_cidrblock="string",
        name="string",
        nexthop_id="string",
        nexthop_type="string")
    
    const alicloudRouteEntryResource = new alicloud.vpc.RouteEntry("alicloudRouteEntryResource", {
        routeTableId: "string",
        description: "string",
        destinationCidrblock: "string",
        name: "string",
        nexthopId: "string",
        nexthopType: "string",
    });
    
    type: alicloud:vpc:RouteEntry
    properties:
        description: string
        destinationCidrblock: string
        name: string
        nexthopId: string
        nexthopType: string
        routeTableId: string
    

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

    RouteTableId string
    The ID of the Route Table.
    Description string
    The description of the Route Entry. The description must be 1 to 256 characters in length, and cannot start with http:// or https://.
    DestinationCidrblock string
    The destination CIDR block of the custom route entry.
    Name string
    The name of the Route Entry. The name must be 1 to 128 characters in length, and cannot start with http:// or https://.
    NexthopId string
    The ID of Next Hop.
    NexthopType string
    The type of Next Hop. Valid values:

    • Instance: An Elastic Compute Service (ECS) instance.
    • HaVip: A high-availability virtual IP address (HAVIP).
    • RouterInterface: A router interface.
    • NetworkInterface: An elastic network interface (ENI).
    • VpnGateway: A VPN Gateway.
    • IPv6Gateway: An IPv6 gateway.
    • NatGateway: A Nat Gateway.
    • Attachment: A transit router.
    • VpcPeer: A VPC Peering Connection.
    • Ipv4Gateway: An IPv4 gateway.
    • GatewayEndpoint: A gateway endpoint.
    • Ecr: A Express Connect Router (ECR).
    RouteTableId string
    The ID of the Route Table.
    Description string
    The description of the Route Entry. The description must be 1 to 256 characters in length, and cannot start with http:// or https://.
    DestinationCidrblock string
    The destination CIDR block of the custom route entry.
    Name string
    The name of the Route Entry. The name must be 1 to 128 characters in length, and cannot start with http:// or https://.
    NexthopId string
    The ID of Next Hop.
    NexthopType string
    The type of Next Hop. Valid values:

    • Instance: An Elastic Compute Service (ECS) instance.
    • HaVip: A high-availability virtual IP address (HAVIP).
    • RouterInterface: A router interface.
    • NetworkInterface: An elastic network interface (ENI).
    • VpnGateway: A VPN Gateway.
    • IPv6Gateway: An IPv6 gateway.
    • NatGateway: A Nat Gateway.
    • Attachment: A transit router.
    • VpcPeer: A VPC Peering Connection.
    • Ipv4Gateway: An IPv4 gateway.
    • GatewayEndpoint: A gateway endpoint.
    • Ecr: A Express Connect Router (ECR).
    routeTableId String
    The ID of the Route Table.
    description String
    The description of the Route Entry. The description must be 1 to 256 characters in length, and cannot start with http:// or https://.
    destinationCidrblock String
    The destination CIDR block of the custom route entry.
    name String
    The name of the Route Entry. The name must be 1 to 128 characters in length, and cannot start with http:// or https://.
    nexthopId String
    The ID of Next Hop.
    nexthopType String
    The type of Next Hop. Valid values:

    • Instance: An Elastic Compute Service (ECS) instance.
    • HaVip: A high-availability virtual IP address (HAVIP).
    • RouterInterface: A router interface.
    • NetworkInterface: An elastic network interface (ENI).
    • VpnGateway: A VPN Gateway.
    • IPv6Gateway: An IPv6 gateway.
    • NatGateway: A Nat Gateway.
    • Attachment: A transit router.
    • VpcPeer: A VPC Peering Connection.
    • Ipv4Gateway: An IPv4 gateway.
    • GatewayEndpoint: A gateway endpoint.
    • Ecr: A Express Connect Router (ECR).
    routeTableId string
    The ID of the Route Table.
    description string
    The description of the Route Entry. The description must be 1 to 256 characters in length, and cannot start with http:// or https://.
    destinationCidrblock string
    The destination CIDR block of the custom route entry.
    name string
    The name of the Route Entry. The name must be 1 to 128 characters in length, and cannot start with http:// or https://.
    nexthopId string
    The ID of Next Hop.
    nexthopType string
    The type of Next Hop. Valid values:

    • Instance: An Elastic Compute Service (ECS) instance.
    • HaVip: A high-availability virtual IP address (HAVIP).
    • RouterInterface: A router interface.
    • NetworkInterface: An elastic network interface (ENI).
    • VpnGateway: A VPN Gateway.
    • IPv6Gateway: An IPv6 gateway.
    • NatGateway: A Nat Gateway.
    • Attachment: A transit router.
    • VpcPeer: A VPC Peering Connection.
    • Ipv4Gateway: An IPv4 gateway.
    • GatewayEndpoint: A gateway endpoint.
    • Ecr: A Express Connect Router (ECR).
    route_table_id str
    The ID of the Route Table.
    description str
    The description of the Route Entry. The description must be 1 to 256 characters in length, and cannot start with http:// or https://.
    destination_cidrblock str
    The destination CIDR block of the custom route entry.
    name str
    The name of the Route Entry. The name must be 1 to 128 characters in length, and cannot start with http:// or https://.
    nexthop_id str
    The ID of Next Hop.
    nexthop_type str
    The type of Next Hop. Valid values:

    • Instance: An Elastic Compute Service (ECS) instance.
    • HaVip: A high-availability virtual IP address (HAVIP).
    • RouterInterface: A router interface.
    • NetworkInterface: An elastic network interface (ENI).
    • VpnGateway: A VPN Gateway.
    • IPv6Gateway: An IPv6 gateway.
    • NatGateway: A Nat Gateway.
    • Attachment: A transit router.
    • VpcPeer: A VPC Peering Connection.
    • Ipv4Gateway: An IPv4 gateway.
    • GatewayEndpoint: A gateway endpoint.
    • Ecr: A Express Connect Router (ECR).
    routeTableId String
    The ID of the Route Table.
    description String
    The description of the Route Entry. The description must be 1 to 256 characters in length, and cannot start with http:// or https://.
    destinationCidrblock String
    The destination CIDR block of the custom route entry.
    name String
    The name of the Route Entry. The name must be 1 to 128 characters in length, and cannot start with http:// or https://.
    nexthopId String
    The ID of Next Hop.
    nexthopType String
    The type of Next Hop. Valid values:

    • Instance: An Elastic Compute Service (ECS) instance.
    • HaVip: A high-availability virtual IP address (HAVIP).
    • RouterInterface: A router interface.
    • NetworkInterface: An elastic network interface (ENI).
    • VpnGateway: A VPN Gateway.
    • IPv6Gateway: An IPv6 gateway.
    • NatGateway: A Nat Gateway.
    • Attachment: A transit router.
    • VpcPeer: A VPC Peering Connection.
    • Ipv4Gateway: An IPv4 gateway.
    • GatewayEndpoint: A gateway endpoint.
    • Ecr: A Express Connect Router (ECR).

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    RouterId string
    This argument has been deprecated. Please use other arguments to launch a custom route entry.

    Deprecated: Attribute router_id has been deprecated and suggest removing it from your template.

    Id string
    The provider-assigned unique ID for this managed resource.
    RouterId string
    This argument has been deprecated. Please use other arguments to launch a custom route entry.

    Deprecated: Attribute router_id has been deprecated and suggest removing it from your template.

    id String
    The provider-assigned unique ID for this managed resource.
    routerId String
    This argument has been deprecated. Please use other arguments to launch a custom route entry.

    Deprecated: Attribute router_id has been deprecated and suggest removing it from your template.

    id string
    The provider-assigned unique ID for this managed resource.
    routerId string
    This argument has been deprecated. Please use other arguments to launch a custom route entry.

    Deprecated: Attribute router_id has been deprecated and suggest removing it from your template.

    id str
    The provider-assigned unique ID for this managed resource.
    router_id str
    This argument has been deprecated. Please use other arguments to launch a custom route entry.

    Deprecated: Attribute router_id has been deprecated and suggest removing it from your template.

    id String
    The provider-assigned unique ID for this managed resource.
    routerId String
    This argument has been deprecated. Please use other arguments to launch a custom route entry.

    Deprecated: Attribute router_id has been deprecated and suggest removing it from your template.

    Look up Existing RouteEntry Resource

    Get an existing RouteEntry 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?: RouteEntryState, opts?: CustomResourceOptions): RouteEntry
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            destination_cidrblock: Optional[str] = None,
            name: Optional[str] = None,
            nexthop_id: Optional[str] = None,
            nexthop_type: Optional[str] = None,
            route_table_id: Optional[str] = None,
            router_id: Optional[str] = None) -> RouteEntry
    func GetRouteEntry(ctx *Context, name string, id IDInput, state *RouteEntryState, opts ...ResourceOption) (*RouteEntry, error)
    public static RouteEntry Get(string name, Input<string> id, RouteEntryState? state, CustomResourceOptions? opts = null)
    public static RouteEntry get(String name, Output<String> id, RouteEntryState 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:
    Description string
    The description of the Route Entry. The description must be 1 to 256 characters in length, and cannot start with http:// or https://.
    DestinationCidrblock string
    The destination CIDR block of the custom route entry.
    Name string
    The name of the Route Entry. The name must be 1 to 128 characters in length, and cannot start with http:// or https://.
    NexthopId string
    The ID of Next Hop.
    NexthopType string
    The type of Next Hop. Valid values:

    • Instance: An Elastic Compute Service (ECS) instance.
    • HaVip: A high-availability virtual IP address (HAVIP).
    • RouterInterface: A router interface.
    • NetworkInterface: An elastic network interface (ENI).
    • VpnGateway: A VPN Gateway.
    • IPv6Gateway: An IPv6 gateway.
    • NatGateway: A Nat Gateway.
    • Attachment: A transit router.
    • VpcPeer: A VPC Peering Connection.
    • Ipv4Gateway: An IPv4 gateway.
    • GatewayEndpoint: A gateway endpoint.
    • Ecr: A Express Connect Router (ECR).
    RouteTableId string
    The ID of the Route Table.
    RouterId string
    This argument has been deprecated. Please use other arguments to launch a custom route entry.

    Deprecated: Attribute router_id has been deprecated and suggest removing it from your template.

    Description string
    The description of the Route Entry. The description must be 1 to 256 characters in length, and cannot start with http:// or https://.
    DestinationCidrblock string
    The destination CIDR block of the custom route entry.
    Name string
    The name of the Route Entry. The name must be 1 to 128 characters in length, and cannot start with http:// or https://.
    NexthopId string
    The ID of Next Hop.
    NexthopType string
    The type of Next Hop. Valid values:

    • Instance: An Elastic Compute Service (ECS) instance.
    • HaVip: A high-availability virtual IP address (HAVIP).
    • RouterInterface: A router interface.
    • NetworkInterface: An elastic network interface (ENI).
    • VpnGateway: A VPN Gateway.
    • IPv6Gateway: An IPv6 gateway.
    • NatGateway: A Nat Gateway.
    • Attachment: A transit router.
    • VpcPeer: A VPC Peering Connection.
    • Ipv4Gateway: An IPv4 gateway.
    • GatewayEndpoint: A gateway endpoint.
    • Ecr: A Express Connect Router (ECR).
    RouteTableId string
    The ID of the Route Table.
    RouterId string
    This argument has been deprecated. Please use other arguments to launch a custom route entry.

    Deprecated: Attribute router_id has been deprecated and suggest removing it from your template.

    description String
    The description of the Route Entry. The description must be 1 to 256 characters in length, and cannot start with http:// or https://.
    destinationCidrblock String
    The destination CIDR block of the custom route entry.
    name String
    The name of the Route Entry. The name must be 1 to 128 characters in length, and cannot start with http:// or https://.
    nexthopId String
    The ID of Next Hop.
    nexthopType String
    The type of Next Hop. Valid values:

    • Instance: An Elastic Compute Service (ECS) instance.
    • HaVip: A high-availability virtual IP address (HAVIP).
    • RouterInterface: A router interface.
    • NetworkInterface: An elastic network interface (ENI).
    • VpnGateway: A VPN Gateway.
    • IPv6Gateway: An IPv6 gateway.
    • NatGateway: A Nat Gateway.
    • Attachment: A transit router.
    • VpcPeer: A VPC Peering Connection.
    • Ipv4Gateway: An IPv4 gateway.
    • GatewayEndpoint: A gateway endpoint.
    • Ecr: A Express Connect Router (ECR).
    routeTableId String
    The ID of the Route Table.
    routerId String
    This argument has been deprecated. Please use other arguments to launch a custom route entry.

    Deprecated: Attribute router_id has been deprecated and suggest removing it from your template.

    description string
    The description of the Route Entry. The description must be 1 to 256 characters in length, and cannot start with http:// or https://.
    destinationCidrblock string
    The destination CIDR block of the custom route entry.
    name string
    The name of the Route Entry. The name must be 1 to 128 characters in length, and cannot start with http:// or https://.
    nexthopId string
    The ID of Next Hop.
    nexthopType string
    The type of Next Hop. Valid values:

    • Instance: An Elastic Compute Service (ECS) instance.
    • HaVip: A high-availability virtual IP address (HAVIP).
    • RouterInterface: A router interface.
    • NetworkInterface: An elastic network interface (ENI).
    • VpnGateway: A VPN Gateway.
    • IPv6Gateway: An IPv6 gateway.
    • NatGateway: A Nat Gateway.
    • Attachment: A transit router.
    • VpcPeer: A VPC Peering Connection.
    • Ipv4Gateway: An IPv4 gateway.
    • GatewayEndpoint: A gateway endpoint.
    • Ecr: A Express Connect Router (ECR).
    routeTableId string
    The ID of the Route Table.
    routerId string
    This argument has been deprecated. Please use other arguments to launch a custom route entry.

    Deprecated: Attribute router_id has been deprecated and suggest removing it from your template.

    description str
    The description of the Route Entry. The description must be 1 to 256 characters in length, and cannot start with http:// or https://.
    destination_cidrblock str
    The destination CIDR block of the custom route entry.
    name str
    The name of the Route Entry. The name must be 1 to 128 characters in length, and cannot start with http:// or https://.
    nexthop_id str
    The ID of Next Hop.
    nexthop_type str
    The type of Next Hop. Valid values:

    • Instance: An Elastic Compute Service (ECS) instance.
    • HaVip: A high-availability virtual IP address (HAVIP).
    • RouterInterface: A router interface.
    • NetworkInterface: An elastic network interface (ENI).
    • VpnGateway: A VPN Gateway.
    • IPv6Gateway: An IPv6 gateway.
    • NatGateway: A Nat Gateway.
    • Attachment: A transit router.
    • VpcPeer: A VPC Peering Connection.
    • Ipv4Gateway: An IPv4 gateway.
    • GatewayEndpoint: A gateway endpoint.
    • Ecr: A Express Connect Router (ECR).
    route_table_id str
    The ID of the Route Table.
    router_id str
    This argument has been deprecated. Please use other arguments to launch a custom route entry.

    Deprecated: Attribute router_id has been deprecated and suggest removing it from your template.

    description String
    The description of the Route Entry. The description must be 1 to 256 characters in length, and cannot start with http:// or https://.
    destinationCidrblock String
    The destination CIDR block of the custom route entry.
    name String
    The name of the Route Entry. The name must be 1 to 128 characters in length, and cannot start with http:// or https://.
    nexthopId String
    The ID of Next Hop.
    nexthopType String
    The type of Next Hop. Valid values:

    • Instance: An Elastic Compute Service (ECS) instance.
    • HaVip: A high-availability virtual IP address (HAVIP).
    • RouterInterface: A router interface.
    • NetworkInterface: An elastic network interface (ENI).
    • VpnGateway: A VPN Gateway.
    • IPv6Gateway: An IPv6 gateway.
    • NatGateway: A Nat Gateway.
    • Attachment: A transit router.
    • VpcPeer: A VPC Peering Connection.
    • Ipv4Gateway: An IPv4 gateway.
    • GatewayEndpoint: A gateway endpoint.
    • Ecr: A Express Connect Router (ECR).
    routeTableId String
    The ID of the Route Table.
    routerId String
    This argument has been deprecated. Please use other arguments to launch a custom route entry.

    Deprecated: Attribute router_id has been deprecated and suggest removing it from your template.

    Import

    $ pulumi import alicloud:vpc/routeEntry:RouteEntry example <route_table_id>:<router_id>:<destination_cidrblock>:<nexthop_type>:<nexthop_id>
    

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

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.66.0 published on Friday, Nov 15, 2024 by Pulumi