1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. sae
  5. Ingress
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

alicloud.sae.Ingress

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

    Provides a Serverless App Engine (SAE) Ingress resource.

    For information about Serverless App Engine (SAE) Ingress and how to use it, see What is Ingress.

    NOTE: Available since v1.137.0.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    import * as random from "@pulumi/random";
    
    const config = new pulumi.Config();
    const name = config.get("name") || "tf-example";
    const defaultRegions = alicloud.getRegions({
        current: true,
    });
    const defaultRandomInteger = new random.RandomInteger("defaultRandomInteger", {
        max: 99999,
        min: 10000,
    });
    const defaultZones = alicloud.getZones({
        availableResourceCreation: "VSwitch",
    });
    const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
        vpcName: name,
        cidrBlock: "10.4.0.0/16",
    });
    const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
        vswitchName: name,
        cidrBlock: "10.4.0.0/24",
        vpcId: defaultNetwork.id,
        zoneId: defaultZones.then(defaultZones => defaultZones.zones?.[0]?.id),
    });
    const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("defaultSecurityGroup", {vpcId: defaultNetwork.id});
    const defaultNamespace = new alicloud.sae.Namespace("defaultNamespace", {
        namespaceId: pulumi.all([defaultRegions, defaultRandomInteger.result]).apply(([defaultRegions, result]) => `${defaultRegions.regions?.[0]?.id}:example${result}`),
        namespaceName: name,
        namespaceDescription: name,
        enableMicroRegistration: false,
    });
    const defaultApplication = new alicloud.sae.Application("defaultApplication", {
        appDescription: name,
        appName: pulumi.interpolate`${name}-${defaultRandomInteger.result}`,
        namespaceId: defaultNamespace.id,
        imageUrl: defaultRegions.then(defaultRegions => `registry-vpc.${defaultRegions.regions?.[0]?.id}.aliyuncs.com/sae-demo-image/consumer:1.0`),
        packageType: "Image",
        securityGroupId: defaultSecurityGroup.id,
        vpcId: defaultNetwork.id,
        vswitchId: defaultSwitch.id,
        timezone: "Asia/Beijing",
        replicas: 5,
        cpu: 500,
        memory: 2048,
    });
    const defaultApplicationLoadBalancer = new alicloud.slb.ApplicationLoadBalancer("defaultApplicationLoadBalancer", {
        loadBalancerName: name,
        vswitchId: defaultSwitch.id,
        loadBalancerSpec: "slb.s2.small",
        addressType: "intranet",
    });
    const defaultIngress = new alicloud.sae.Ingress("defaultIngress", {
        slbId: defaultApplicationLoadBalancer.id,
        namespaceId: defaultNamespace.id,
        listenerPort: 80,
        rules: [{
            appId: defaultApplication.id,
            containerPort: 443,
            domain: "www.alicloud.com",
            appName: defaultApplication.appName,
            path: "/",
        }],
        defaultRule: {
            appId: defaultApplication.id,
            containerPort: 443,
        },
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    import pulumi_random as random
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "tf-example"
    default_regions = alicloud.get_regions(current=True)
    default_random_integer = random.RandomInteger("defaultRandomInteger",
        max=99999,
        min=10000)
    default_zones = alicloud.get_zones(available_resource_creation="VSwitch")
    default_network = alicloud.vpc.Network("defaultNetwork",
        vpc_name=name,
        cidr_block="10.4.0.0/16")
    default_switch = alicloud.vpc.Switch("defaultSwitch",
        vswitch_name=name,
        cidr_block="10.4.0.0/24",
        vpc_id=default_network.id,
        zone_id=default_zones.zones[0].id)
    default_security_group = alicloud.ecs.SecurityGroup("defaultSecurityGroup", vpc_id=default_network.id)
    default_namespace = alicloud.sae.Namespace("defaultNamespace",
        namespace_id=default_random_integer.result.apply(lambda result: f"{default_regions.regions[0].id}:example{result}"),
        namespace_name=name,
        namespace_description=name,
        enable_micro_registration=False)
    default_application = alicloud.sae.Application("defaultApplication",
        app_description=name,
        app_name=default_random_integer.result.apply(lambda result: f"{name}-{result}"),
        namespace_id=default_namespace.id,
        image_url=f"registry-vpc.{default_regions.regions[0].id}.aliyuncs.com/sae-demo-image/consumer:1.0",
        package_type="Image",
        security_group_id=default_security_group.id,
        vpc_id=default_network.id,
        vswitch_id=default_switch.id,
        timezone="Asia/Beijing",
        replicas=5,
        cpu=500,
        memory=2048)
    default_application_load_balancer = alicloud.slb.ApplicationLoadBalancer("defaultApplicationLoadBalancer",
        load_balancer_name=name,
        vswitch_id=default_switch.id,
        load_balancer_spec="slb.s2.small",
        address_type="intranet")
    default_ingress = alicloud.sae.Ingress("defaultIngress",
        slb_id=default_application_load_balancer.id,
        namespace_id=default_namespace.id,
        listener_port=80,
        rules=[alicloud.sae.IngressRuleArgs(
            app_id=default_application.id,
            container_port=443,
            domain="www.alicloud.com",
            app_name=default_application.app_name,
            path="/",
        )],
        default_rule=alicloud.sae.IngressDefaultRuleArgs(
            app_id=default_application.id,
            container_port=443,
        ))
    
    package main
    
    import (
    	"fmt"
    
    	"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/sae"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/slb"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"github.com/pulumi/pulumi-random/sdk/v4/go/random"
    	"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 := "tf-example"
    		if param := cfg.Get("name"); param != "" {
    			name = param
    		}
    		defaultRegions, err := alicloud.GetRegions(ctx, &alicloud.GetRegionsArgs{
    			Current: pulumi.BoolRef(true),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultRandomInteger, err := random.NewRandomInteger(ctx, "defaultRandomInteger", &random.RandomIntegerArgs{
    			Max: pulumi.Int(99999),
    			Min: pulumi.Int(10000),
    		})
    		if err != nil {
    			return err
    		}
    		defaultZones, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
    			AvailableResourceCreation: pulumi.StringRef("VSwitch"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		defaultNetwork, err := vpc.NewNetwork(ctx, "defaultNetwork", &vpc.NetworkArgs{
    			VpcName:   pulumi.String(name),
    			CidrBlock: pulumi.String("10.4.0.0/16"),
    		})
    		if err != nil {
    			return err
    		}
    		defaultSwitch, err := vpc.NewSwitch(ctx, "defaultSwitch", &vpc.SwitchArgs{
    			VswitchName: pulumi.String(name),
    			CidrBlock:   pulumi.String("10.4.0.0/24"),
    			VpcId:       defaultNetwork.ID(),
    			ZoneId:      pulumi.String(defaultZones.Zones[0].Id),
    		})
    		if err != nil {
    			return err
    		}
    		defaultSecurityGroup, err := ecs.NewSecurityGroup(ctx, "defaultSecurityGroup", &ecs.SecurityGroupArgs{
    			VpcId: defaultNetwork.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		defaultNamespace, err := sae.NewNamespace(ctx, "defaultNamespace", &sae.NamespaceArgs{
    			NamespaceId: defaultRandomInteger.Result.ApplyT(func(result int) (string, error) {
    				return fmt.Sprintf("%v:example%v", defaultRegions.Regions[0].Id, result), nil
    			}).(pulumi.StringOutput),
    			NamespaceName:           pulumi.String(name),
    			NamespaceDescription:    pulumi.String(name),
    			EnableMicroRegistration: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		defaultApplication, err := sae.NewApplication(ctx, "defaultApplication", &sae.ApplicationArgs{
    			AppDescription: pulumi.String(name),
    			AppName: defaultRandomInteger.Result.ApplyT(func(result int) (string, error) {
    				return fmt.Sprintf("%v-%v", name, result), nil
    			}).(pulumi.StringOutput),
    			NamespaceId:     defaultNamespace.ID(),
    			ImageUrl:        pulumi.String(fmt.Sprintf("registry-vpc.%v.aliyuncs.com/sae-demo-image/consumer:1.0", defaultRegions.Regions[0].Id)),
    			PackageType:     pulumi.String("Image"),
    			SecurityGroupId: defaultSecurityGroup.ID(),
    			VpcId:           defaultNetwork.ID(),
    			VswitchId:       defaultSwitch.ID(),
    			Timezone:        pulumi.String("Asia/Beijing"),
    			Replicas:        pulumi.Int(5),
    			Cpu:             pulumi.Int(500),
    			Memory:          pulumi.Int(2048),
    		})
    		if err != nil {
    			return err
    		}
    		defaultApplicationLoadBalancer, err := slb.NewApplicationLoadBalancer(ctx, "defaultApplicationLoadBalancer", &slb.ApplicationLoadBalancerArgs{
    			LoadBalancerName: pulumi.String(name),
    			VswitchId:        defaultSwitch.ID(),
    			LoadBalancerSpec: pulumi.String("slb.s2.small"),
    			AddressType:      pulumi.String("intranet"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = sae.NewIngress(ctx, "defaultIngress", &sae.IngressArgs{
    			SlbId:        defaultApplicationLoadBalancer.ID(),
    			NamespaceId:  defaultNamespace.ID(),
    			ListenerPort: pulumi.Int(80),
    			Rules: sae.IngressRuleArray{
    				&sae.IngressRuleArgs{
    					AppId:         defaultApplication.ID(),
    					ContainerPort: pulumi.Int(443),
    					Domain:        pulumi.String("www.alicloud.com"),
    					AppName:       defaultApplication.AppName,
    					Path:          pulumi.String("/"),
    				},
    			},
    			DefaultRule: &sae.IngressDefaultRuleArgs{
    				AppId:         defaultApplication.ID(),
    				ContainerPort: pulumi.Int(443),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    using Random = Pulumi.Random;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var name = config.Get("name") ?? "tf-example";
        var defaultRegions = AliCloud.GetRegions.Invoke(new()
        {
            Current = true,
        });
    
        var defaultRandomInteger = new Random.RandomInteger("defaultRandomInteger", new()
        {
            Max = 99999,
            Min = 10000,
        });
    
        var defaultZones = AliCloud.GetZones.Invoke(new()
        {
            AvailableResourceCreation = "VSwitch",
        });
    
        var defaultNetwork = new AliCloud.Vpc.Network("defaultNetwork", new()
        {
            VpcName = name,
            CidrBlock = "10.4.0.0/16",
        });
    
        var defaultSwitch = new AliCloud.Vpc.Switch("defaultSwitch", new()
        {
            VswitchName = name,
            CidrBlock = "10.4.0.0/24",
            VpcId = defaultNetwork.Id,
            ZoneId = defaultZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
        });
    
        var defaultSecurityGroup = new AliCloud.Ecs.SecurityGroup("defaultSecurityGroup", new()
        {
            VpcId = defaultNetwork.Id,
        });
    
        var defaultNamespace = new AliCloud.Sae.Namespace("defaultNamespace", new()
        {
            NamespaceId = Output.Tuple(defaultRegions, defaultRandomInteger.Result).Apply(values =>
            {
                var defaultRegions = values.Item1;
                var result = values.Item2;
                return $"{defaultRegions.Apply(getRegionsResult => getRegionsResult.Regions[0]?.Id)}:example{result}";
            }),
            NamespaceName = name,
            NamespaceDescription = name,
            EnableMicroRegistration = false,
        });
    
        var defaultApplication = new AliCloud.Sae.Application("defaultApplication", new()
        {
            AppDescription = name,
            AppName = defaultRandomInteger.Result.Apply(result => $"{name}-{result}"),
            NamespaceId = defaultNamespace.Id,
            ImageUrl = $"registry-vpc.{defaultRegions.Apply(getRegionsResult => getRegionsResult.Regions[0]?.Id)}.aliyuncs.com/sae-demo-image/consumer:1.0",
            PackageType = "Image",
            SecurityGroupId = defaultSecurityGroup.Id,
            VpcId = defaultNetwork.Id,
            VswitchId = defaultSwitch.Id,
            Timezone = "Asia/Beijing",
            Replicas = 5,
            Cpu = 500,
            Memory = 2048,
        });
    
        var defaultApplicationLoadBalancer = new AliCloud.Slb.ApplicationLoadBalancer("defaultApplicationLoadBalancer", new()
        {
            LoadBalancerName = name,
            VswitchId = defaultSwitch.Id,
            LoadBalancerSpec = "slb.s2.small",
            AddressType = "intranet",
        });
    
        var defaultIngress = new AliCloud.Sae.Ingress("defaultIngress", new()
        {
            SlbId = defaultApplicationLoadBalancer.Id,
            NamespaceId = defaultNamespace.Id,
            ListenerPort = 80,
            Rules = new[]
            {
                new AliCloud.Sae.Inputs.IngressRuleArgs
                {
                    AppId = defaultApplication.Id,
                    ContainerPort = 443,
                    Domain = "www.alicloud.com",
                    AppName = defaultApplication.AppName,
                    Path = "/",
                },
            },
            DefaultRule = new AliCloud.Sae.Inputs.IngressDefaultRuleArgs
            {
                AppId = defaultApplication.Id,
                ContainerPort = 443,
            },
        });
    
    });
    
    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.GetRegionsArgs;
    import com.pulumi.random.RandomInteger;
    import com.pulumi.random.RandomIntegerArgs;
    import com.pulumi.alicloud.inputs.GetZonesArgs;
    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.sae.Namespace;
    import com.pulumi.alicloud.sae.NamespaceArgs;
    import com.pulumi.alicloud.sae.Application;
    import com.pulumi.alicloud.sae.ApplicationArgs;
    import com.pulumi.alicloud.slb.ApplicationLoadBalancer;
    import com.pulumi.alicloud.slb.ApplicationLoadBalancerArgs;
    import com.pulumi.alicloud.sae.Ingress;
    import com.pulumi.alicloud.sae.IngressArgs;
    import com.pulumi.alicloud.sae.inputs.IngressRuleArgs;
    import com.pulumi.alicloud.sae.inputs.IngressDefaultRuleArgs;
    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("tf-example");
            final var defaultRegions = AlicloudFunctions.getRegions(GetRegionsArgs.builder()
                .current(true)
                .build());
    
            var defaultRandomInteger = new RandomInteger("defaultRandomInteger", RandomIntegerArgs.builder()        
                .max(99999)
                .min(10000)
                .build());
    
            final var defaultZones = AlicloudFunctions.getZones(GetZonesArgs.builder()
                .availableResourceCreation("VSwitch")
                .build());
    
            var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()        
                .vpcName(name)
                .cidrBlock("10.4.0.0/16")
                .build());
    
            var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()        
                .vswitchName(name)
                .cidrBlock("10.4.0.0/24")
                .vpcId(defaultNetwork.id())
                .zoneId(defaultZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
                .build());
    
            var defaultSecurityGroup = new SecurityGroup("defaultSecurityGroup", SecurityGroupArgs.builder()        
                .vpcId(defaultNetwork.id())
                .build());
    
            var defaultNamespace = new Namespace("defaultNamespace", NamespaceArgs.builder()        
                .namespaceId(defaultRandomInteger.result().applyValue(result -> String.format("%s:example%s", defaultRegions.applyValue(getRegionsResult -> getRegionsResult.regions()[0].id()),result)))
                .namespaceName(name)
                .namespaceDescription(name)
                .enableMicroRegistration(false)
                .build());
    
            var defaultApplication = new Application("defaultApplication", ApplicationArgs.builder()        
                .appDescription(name)
                .appName(defaultRandomInteger.result().applyValue(result -> String.format("%s-%s", name,result)))
                .namespaceId(defaultNamespace.id())
                .imageUrl(String.format("registry-vpc.%s.aliyuncs.com/sae-demo-image/consumer:1.0", defaultRegions.applyValue(getRegionsResult -> getRegionsResult.regions()[0].id())))
                .packageType("Image")
                .securityGroupId(defaultSecurityGroup.id())
                .vpcId(defaultNetwork.id())
                .vswitchId(defaultSwitch.id())
                .timezone("Asia/Beijing")
                .replicas("5")
                .cpu("500")
                .memory("2048")
                .build());
    
            var defaultApplicationLoadBalancer = new ApplicationLoadBalancer("defaultApplicationLoadBalancer", ApplicationLoadBalancerArgs.builder()        
                .loadBalancerName(name)
                .vswitchId(defaultSwitch.id())
                .loadBalancerSpec("slb.s2.small")
                .addressType("intranet")
                .build());
    
            var defaultIngress = new Ingress("defaultIngress", IngressArgs.builder()        
                .slbId(defaultApplicationLoadBalancer.id())
                .namespaceId(defaultNamespace.id())
                .listenerPort("80")
                .rules(IngressRuleArgs.builder()
                    .appId(defaultApplication.id())
                    .containerPort("443")
                    .domain("www.alicloud.com")
                    .appName(defaultApplication.appName())
                    .path("/")
                    .build())
                .defaultRule(IngressDefaultRuleArgs.builder()
                    .appId(defaultApplication.id())
                    .containerPort("443")
                    .build())
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: tf-example
    resources:
      defaultRandomInteger:
        type: random:RandomInteger
        properties:
          max: 99999
          min: 10000
      defaultNetwork:
        type: alicloud:vpc:Network
        properties:
          vpcName: ${name}
          cidrBlock: 10.4.0.0/16
      defaultSwitch:
        type: alicloud:vpc:Switch
        properties:
          vswitchName: ${name}
          cidrBlock: 10.4.0.0/24
          vpcId: ${defaultNetwork.id}
          zoneId: ${defaultZones.zones[0].id}
      defaultSecurityGroup:
        type: alicloud:ecs:SecurityGroup
        properties:
          vpcId: ${defaultNetwork.id}
      defaultNamespace:
        type: alicloud:sae:Namespace
        properties:
          namespaceId: ${defaultRegions.regions[0].id}:example${defaultRandomInteger.result}
          namespaceName: ${name}
          namespaceDescription: ${name}
          enableMicroRegistration: false
      defaultApplication:
        type: alicloud:sae:Application
        properties:
          appDescription: ${name}
          appName: ${name}-${defaultRandomInteger.result}
          namespaceId: ${defaultNamespace.id}
          imageUrl: registry-vpc.${defaultRegions.regions[0].id}.aliyuncs.com/sae-demo-image/consumer:1.0
          packageType: Image
          securityGroupId: ${defaultSecurityGroup.id}
          vpcId: ${defaultNetwork.id}
          vswitchId: ${defaultSwitch.id}
          timezone: Asia/Beijing
          replicas: '5'
          cpu: '500'
          memory: '2048'
      defaultApplicationLoadBalancer:
        type: alicloud:slb:ApplicationLoadBalancer
        properties:
          loadBalancerName: ${name}
          vswitchId: ${defaultSwitch.id}
          loadBalancerSpec: slb.s2.small
          addressType: intranet
      defaultIngress:
        type: alicloud:sae:Ingress
        properties:
          slbId: ${defaultApplicationLoadBalancer.id}
          namespaceId: ${defaultNamespace.id}
          listenerPort: '80'
          rules:
            - appId: ${defaultApplication.id}
              containerPort: '443'
              domain: www.alicloud.com
              appName: ${defaultApplication.appName}
              path: /
          defaultRule:
            appId: ${defaultApplication.id}
            containerPort: '443'
    variables:
      defaultRegions:
        fn::invoke:
          Function: alicloud:getRegions
          Arguments:
            current: true
      defaultZones:
        fn::invoke:
          Function: alicloud:getZones
          Arguments:
            availableResourceCreation: VSwitch
    

    Create Ingress Resource

    new Ingress(name: string, args: IngressArgs, opts?: CustomResourceOptions);
    @overload
    def Ingress(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                cert_id: Optional[str] = None,
                cert_ids: Optional[str] = None,
                default_rule: Optional[IngressDefaultRuleArgs] = None,
                description: Optional[str] = None,
                listener_port: Optional[int] = None,
                listener_protocol: Optional[str] = None,
                load_balance_type: Optional[str] = None,
                namespace_id: Optional[str] = None,
                rules: Optional[Sequence[IngressRuleArgs]] = None,
                slb_id: Optional[str] = None)
    @overload
    def Ingress(resource_name: str,
                args: IngressArgs,
                opts: Optional[ResourceOptions] = None)
    func NewIngress(ctx *Context, name string, args IngressArgs, opts ...ResourceOption) (*Ingress, error)
    public Ingress(string name, IngressArgs args, CustomResourceOptions? opts = null)
    public Ingress(String name, IngressArgs args)
    public Ingress(String name, IngressArgs args, CustomResourceOptions options)
    
    type: alicloud:sae:Ingress
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args IngressArgs
    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 IngressArgs
    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 IngressArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IngressArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IngressArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    ListenerPort int
    SLB listening port.
    NamespaceId string
    The ID of Namespace. It can contain 2 to 32 lowercase characters.The value is in format {RegionId}:{namespace}.
    Rules List<Pulumi.AliCloud.Sae.Inputs.IngressRule>
    Forwarding rules. Forward traffic to the specified application according to the domain name and path. See rules below.
    SlbId string
    SLB ID.
    CertId string
    The certificate ID of the HTTPS listener. The cert_id takes effect only when load_balance_type is set to clb.
    CertIds string
    The certificate IDs of the HTTPS listener, and multiple certificate IDs are separated by commas. The cert_ids takes effect only when load_balance_type is set to alb.
    DefaultRule Pulumi.AliCloud.Sae.Inputs.IngressDefaultRule
    Default Rule. See default_rule below.
    Description string
    Description.
    ListenerProtocol string
    The protocol that is used to forward requests. Default value: HTTP. Valid values: HTTP, HTTPS.
    LoadBalanceType string
    The type of the SLB instance. Default value: clb. Valid values: clb, alb.
    ListenerPort int
    SLB listening port.
    NamespaceId string
    The ID of Namespace. It can contain 2 to 32 lowercase characters.The value is in format {RegionId}:{namespace}.
    Rules []IngressRuleArgs
    Forwarding rules. Forward traffic to the specified application according to the domain name and path. See rules below.
    SlbId string
    SLB ID.
    CertId string
    The certificate ID of the HTTPS listener. The cert_id takes effect only when load_balance_type is set to clb.
    CertIds string
    The certificate IDs of the HTTPS listener, and multiple certificate IDs are separated by commas. The cert_ids takes effect only when load_balance_type is set to alb.
    DefaultRule IngressDefaultRuleArgs
    Default Rule. See default_rule below.
    Description string
    Description.
    ListenerProtocol string
    The protocol that is used to forward requests. Default value: HTTP. Valid values: HTTP, HTTPS.
    LoadBalanceType string
    The type of the SLB instance. Default value: clb. Valid values: clb, alb.
    listenerPort Integer
    SLB listening port.
    namespaceId String
    The ID of Namespace. It can contain 2 to 32 lowercase characters.The value is in format {RegionId}:{namespace}.
    rules List<IngressRule>
    Forwarding rules. Forward traffic to the specified application according to the domain name and path. See rules below.
    slbId String
    SLB ID.
    certId String
    The certificate ID of the HTTPS listener. The cert_id takes effect only when load_balance_type is set to clb.
    certIds String
    The certificate IDs of the HTTPS listener, and multiple certificate IDs are separated by commas. The cert_ids takes effect only when load_balance_type is set to alb.
    defaultRule IngressDefaultRule
    Default Rule. See default_rule below.
    description String
    Description.
    listenerProtocol String
    The protocol that is used to forward requests. Default value: HTTP. Valid values: HTTP, HTTPS.
    loadBalanceType String
    The type of the SLB instance. Default value: clb. Valid values: clb, alb.
    listenerPort number
    SLB listening port.
    namespaceId string
    The ID of Namespace. It can contain 2 to 32 lowercase characters.The value is in format {RegionId}:{namespace}.
    rules IngressRule[]
    Forwarding rules. Forward traffic to the specified application according to the domain name and path. See rules below.
    slbId string
    SLB ID.
    certId string
    The certificate ID of the HTTPS listener. The cert_id takes effect only when load_balance_type is set to clb.
    certIds string
    The certificate IDs of the HTTPS listener, and multiple certificate IDs are separated by commas. The cert_ids takes effect only when load_balance_type is set to alb.
    defaultRule IngressDefaultRule
    Default Rule. See default_rule below.
    description string
    Description.
    listenerProtocol string
    The protocol that is used to forward requests. Default value: HTTP. Valid values: HTTP, HTTPS.
    loadBalanceType string
    The type of the SLB instance. Default value: clb. Valid values: clb, alb.
    listener_port int
    SLB listening port.
    namespace_id str
    The ID of Namespace. It can contain 2 to 32 lowercase characters.The value is in format {RegionId}:{namespace}.
    rules Sequence[IngressRuleArgs]
    Forwarding rules. Forward traffic to the specified application according to the domain name and path. See rules below.
    slb_id str
    SLB ID.
    cert_id str
    The certificate ID of the HTTPS listener. The cert_id takes effect only when load_balance_type is set to clb.
    cert_ids str
    The certificate IDs of the HTTPS listener, and multiple certificate IDs are separated by commas. The cert_ids takes effect only when load_balance_type is set to alb.
    default_rule IngressDefaultRuleArgs
    Default Rule. See default_rule below.
    description str
    Description.
    listener_protocol str
    The protocol that is used to forward requests. Default value: HTTP. Valid values: HTTP, HTTPS.
    load_balance_type str
    The type of the SLB instance. Default value: clb. Valid values: clb, alb.
    listenerPort Number
    SLB listening port.
    namespaceId String
    The ID of Namespace. It can contain 2 to 32 lowercase characters.The value is in format {RegionId}:{namespace}.
    rules List<Property Map>
    Forwarding rules. Forward traffic to the specified application according to the domain name and path. See rules below.
    slbId String
    SLB ID.
    certId String
    The certificate ID of the HTTPS listener. The cert_id takes effect only when load_balance_type is set to clb.
    certIds String
    The certificate IDs of the HTTPS listener, and multiple certificate IDs are separated by commas. The cert_ids takes effect only when load_balance_type is set to alb.
    defaultRule Property Map
    Default Rule. See default_rule below.
    description String
    Description.
    listenerProtocol String
    The protocol that is used to forward requests. Default value: HTTP. Valid values: HTTP, HTTPS.
    loadBalanceType String
    The type of the SLB instance. Default value: clb. Valid values: clb, alb.

    Outputs

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

    Get an existing Ingress 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?: IngressState, opts?: CustomResourceOptions): Ingress
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cert_id: Optional[str] = None,
            cert_ids: Optional[str] = None,
            default_rule: Optional[IngressDefaultRuleArgs] = None,
            description: Optional[str] = None,
            listener_port: Optional[int] = None,
            listener_protocol: Optional[str] = None,
            load_balance_type: Optional[str] = None,
            namespace_id: Optional[str] = None,
            rules: Optional[Sequence[IngressRuleArgs]] = None,
            slb_id: Optional[str] = None) -> Ingress
    func GetIngress(ctx *Context, name string, id IDInput, state *IngressState, opts ...ResourceOption) (*Ingress, error)
    public static Ingress Get(string name, Input<string> id, IngressState? state, CustomResourceOptions? opts = null)
    public static Ingress get(String name, Output<String> id, IngressState 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:
    CertId string
    The certificate ID of the HTTPS listener. The cert_id takes effect only when load_balance_type is set to clb.
    CertIds string
    The certificate IDs of the HTTPS listener, and multiple certificate IDs are separated by commas. The cert_ids takes effect only when load_balance_type is set to alb.
    DefaultRule Pulumi.AliCloud.Sae.Inputs.IngressDefaultRule
    Default Rule. See default_rule below.
    Description string
    Description.
    ListenerPort int
    SLB listening port.
    ListenerProtocol string
    The protocol that is used to forward requests. Default value: HTTP. Valid values: HTTP, HTTPS.
    LoadBalanceType string
    The type of the SLB instance. Default value: clb. Valid values: clb, alb.
    NamespaceId string
    The ID of Namespace. It can contain 2 to 32 lowercase characters.The value is in format {RegionId}:{namespace}.
    Rules List<Pulumi.AliCloud.Sae.Inputs.IngressRule>
    Forwarding rules. Forward traffic to the specified application according to the domain name and path. See rules below.
    SlbId string
    SLB ID.
    CertId string
    The certificate ID of the HTTPS listener. The cert_id takes effect only when load_balance_type is set to clb.
    CertIds string
    The certificate IDs of the HTTPS listener, and multiple certificate IDs are separated by commas. The cert_ids takes effect only when load_balance_type is set to alb.
    DefaultRule IngressDefaultRuleArgs
    Default Rule. See default_rule below.
    Description string
    Description.
    ListenerPort int
    SLB listening port.
    ListenerProtocol string
    The protocol that is used to forward requests. Default value: HTTP. Valid values: HTTP, HTTPS.
    LoadBalanceType string
    The type of the SLB instance. Default value: clb. Valid values: clb, alb.
    NamespaceId string
    The ID of Namespace. It can contain 2 to 32 lowercase characters.The value is in format {RegionId}:{namespace}.
    Rules []IngressRuleArgs
    Forwarding rules. Forward traffic to the specified application according to the domain name and path. See rules below.
    SlbId string
    SLB ID.
    certId String
    The certificate ID of the HTTPS listener. The cert_id takes effect only when load_balance_type is set to clb.
    certIds String
    The certificate IDs of the HTTPS listener, and multiple certificate IDs are separated by commas. The cert_ids takes effect only when load_balance_type is set to alb.
    defaultRule IngressDefaultRule
    Default Rule. See default_rule below.
    description String
    Description.
    listenerPort Integer
    SLB listening port.
    listenerProtocol String
    The protocol that is used to forward requests. Default value: HTTP. Valid values: HTTP, HTTPS.
    loadBalanceType String
    The type of the SLB instance. Default value: clb. Valid values: clb, alb.
    namespaceId String
    The ID of Namespace. It can contain 2 to 32 lowercase characters.The value is in format {RegionId}:{namespace}.
    rules List<IngressRule>
    Forwarding rules. Forward traffic to the specified application according to the domain name and path. See rules below.
    slbId String
    SLB ID.
    certId string
    The certificate ID of the HTTPS listener. The cert_id takes effect only when load_balance_type is set to clb.
    certIds string
    The certificate IDs of the HTTPS listener, and multiple certificate IDs are separated by commas. The cert_ids takes effect only when load_balance_type is set to alb.
    defaultRule IngressDefaultRule
    Default Rule. See default_rule below.
    description string
    Description.
    listenerPort number
    SLB listening port.
    listenerProtocol string
    The protocol that is used to forward requests. Default value: HTTP. Valid values: HTTP, HTTPS.
    loadBalanceType string
    The type of the SLB instance. Default value: clb. Valid values: clb, alb.
    namespaceId string
    The ID of Namespace. It can contain 2 to 32 lowercase characters.The value is in format {RegionId}:{namespace}.
    rules IngressRule[]
    Forwarding rules. Forward traffic to the specified application according to the domain name and path. See rules below.
    slbId string
    SLB ID.
    cert_id str
    The certificate ID of the HTTPS listener. The cert_id takes effect only when load_balance_type is set to clb.
    cert_ids str
    The certificate IDs of the HTTPS listener, and multiple certificate IDs are separated by commas. The cert_ids takes effect only when load_balance_type is set to alb.
    default_rule IngressDefaultRuleArgs
    Default Rule. See default_rule below.
    description str
    Description.
    listener_port int
    SLB listening port.
    listener_protocol str
    The protocol that is used to forward requests. Default value: HTTP. Valid values: HTTP, HTTPS.
    load_balance_type str
    The type of the SLB instance. Default value: clb. Valid values: clb, alb.
    namespace_id str
    The ID of Namespace. It can contain 2 to 32 lowercase characters.The value is in format {RegionId}:{namespace}.
    rules Sequence[IngressRuleArgs]
    Forwarding rules. Forward traffic to the specified application according to the domain name and path. See rules below.
    slb_id str
    SLB ID.
    certId String
    The certificate ID of the HTTPS listener. The cert_id takes effect only when load_balance_type is set to clb.
    certIds String
    The certificate IDs of the HTTPS listener, and multiple certificate IDs are separated by commas. The cert_ids takes effect only when load_balance_type is set to alb.
    defaultRule Property Map
    Default Rule. See default_rule below.
    description String
    Description.
    listenerPort Number
    SLB listening port.
    listenerProtocol String
    The protocol that is used to forward requests. Default value: HTTP. Valid values: HTTP, HTTPS.
    loadBalanceType String
    The type of the SLB instance. Default value: clb. Valid values: clb, alb.
    namespaceId String
    The ID of Namespace. It can contain 2 to 32 lowercase characters.The value is in format {RegionId}:{namespace}.
    rules List<Property Map>
    Forwarding rules. Forward traffic to the specified application according to the domain name and path. See rules below.
    slbId String
    SLB ID.

    Supporting Types

    IngressDefaultRule, IngressDefaultRuleArgs

    AppId string
    Target application ID.
    AppName string
    Target application name.
    ContainerPort int
    Application backend port.
    AppId string
    Target application ID.
    AppName string
    Target application name.
    ContainerPort int
    Application backend port.
    appId String
    Target application ID.
    appName String
    Target application name.
    containerPort Integer
    Application backend port.
    appId string
    Target application ID.
    appName string
    Target application name.
    containerPort number
    Application backend port.
    app_id str
    Target application ID.
    app_name str
    Target application name.
    container_port int
    Application backend port.
    appId String
    Target application ID.
    appName String
    Target application name.
    containerPort Number
    Application backend port.

    IngressRule, IngressRuleArgs

    AppId string
    Target application ID.
    AppName string
    Target application name.
    ContainerPort int
    Application backend port.
    Domain string
    Application domain name.
    Path string
    URL path.
    BackendProtocol string
    The backend protocol.
    RewritePath string
    The rewrite path.
    AppId string
    Target application ID.
    AppName string
    Target application name.
    ContainerPort int
    Application backend port.
    Domain string
    Application domain name.
    Path string
    URL path.
    BackendProtocol string
    The backend protocol.
    RewritePath string
    The rewrite path.
    appId String
    Target application ID.
    appName String
    Target application name.
    containerPort Integer
    Application backend port.
    domain String
    Application domain name.
    path String
    URL path.
    backendProtocol String
    The backend protocol.
    rewritePath String
    The rewrite path.
    appId string
    Target application ID.
    appName string
    Target application name.
    containerPort number
    Application backend port.
    domain string
    Application domain name.
    path string
    URL path.
    backendProtocol string
    The backend protocol.
    rewritePath string
    The rewrite path.
    app_id str
    Target application ID.
    app_name str
    Target application name.
    container_port int
    Application backend port.
    domain str
    Application domain name.
    path str
    URL path.
    backend_protocol str
    The backend protocol.
    rewrite_path str
    The rewrite path.
    appId String
    Target application ID.
    appName String
    Target application name.
    containerPort Number
    Application backend port.
    domain String
    Application domain name.
    path String
    URL path.
    backendProtocol String
    The backend protocol.
    rewritePath String
    The rewrite path.

    Import

    Serverless App Engine (SAE) Ingress can be imported using the id, e.g.

    $ pulumi import alicloud:sae/ingress:Ingress example <id>
    

    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.51.0 published on Saturday, Mar 23, 2024 by Pulumi