azure logo
Azure Classic v5.38.0, Mar 21 23

azure.cdn.FrontdoorOriginGroup

Manages a Front Door (standard/premium) Origin Group.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
    {
        Location = "West Europe",
    });

    var exampleFrontdoorProfile = new Azure.Cdn.FrontdoorProfile("exampleFrontdoorProfile", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
    });

    var exampleFrontdoorOriginGroup = new Azure.Cdn.FrontdoorOriginGroup("exampleFrontdoorOriginGroup", new()
    {
        CdnFrontdoorProfileId = exampleFrontdoorProfile.Id,
        SessionAffinityEnabled = true,
        RestoreTrafficTimeToHealedOrNewEndpointInMinutes = 10,
        HealthProbe = new Azure.Cdn.Inputs.FrontdoorOriginGroupHealthProbeArgs
        {
            IntervalInSeconds = 240,
            Path = "/healthProbe",
            Protocol = "Https",
            RequestType = "HEAD",
        },
        LoadBalancing = new Azure.Cdn.Inputs.FrontdoorOriginGroupLoadBalancingArgs
        {
            AdditionalLatencyInMilliseconds = 0,
            SampleSize = 16,
            SuccessfulSamplesRequired = 3,
        },
    });

});
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/cdn"
	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleFrontdoorProfile, err := cdn.NewFrontdoorProfile(ctx, "exampleFrontdoorProfile", &cdn.FrontdoorProfileArgs{
			ResourceGroupName: exampleResourceGroup.Name,
		})
		if err != nil {
			return err
		}
		_, err = cdn.NewFrontdoorOriginGroup(ctx, "exampleFrontdoorOriginGroup", &cdn.FrontdoorOriginGroupArgs{
			CdnFrontdoorProfileId:                            exampleFrontdoorProfile.ID(),
			SessionAffinityEnabled:                           pulumi.Bool(true),
			RestoreTrafficTimeToHealedOrNewEndpointInMinutes: pulumi.Int(10),
			HealthProbe: &cdn.FrontdoorOriginGroupHealthProbeArgs{
				IntervalInSeconds: pulumi.Int(240),
				Path:              pulumi.String("/healthProbe"),
				Protocol:          pulumi.String("Https"),
				RequestType:       pulumi.String("HEAD"),
			},
			LoadBalancing: &cdn.FrontdoorOriginGroupLoadBalancingArgs{
				AdditionalLatencyInMilliseconds: pulumi.Int(0),
				SampleSize:                      pulumi.Int(16),
				SuccessfulSamplesRequired:       pulumi.Int(3),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.cdn.FrontdoorProfile;
import com.pulumi.azure.cdn.FrontdoorProfileArgs;
import com.pulumi.azure.cdn.FrontdoorOriginGroup;
import com.pulumi.azure.cdn.FrontdoorOriginGroupArgs;
import com.pulumi.azure.cdn.inputs.FrontdoorOriginGroupHealthProbeArgs;
import com.pulumi.azure.cdn.inputs.FrontdoorOriginGroupLoadBalancingArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
            .location("West Europe")
            .build());

        var exampleFrontdoorProfile = new FrontdoorProfile("exampleFrontdoorProfile", FrontdoorProfileArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .build());

        var exampleFrontdoorOriginGroup = new FrontdoorOriginGroup("exampleFrontdoorOriginGroup", FrontdoorOriginGroupArgs.builder()        
            .cdnFrontdoorProfileId(exampleFrontdoorProfile.id())
            .sessionAffinityEnabled(true)
            .restoreTrafficTimeToHealedOrNewEndpointInMinutes(10)
            .healthProbe(FrontdoorOriginGroupHealthProbeArgs.builder()
                .intervalInSeconds(240)
                .path("/healthProbe")
                .protocol("Https")
                .requestType("HEAD")
                .build())
            .loadBalancing(FrontdoorOriginGroupLoadBalancingArgs.builder()
                .additionalLatencyInMilliseconds(0)
                .sampleSize(16)
                .successfulSamplesRequired(3)
                .build())
            .build());

    }
}
import pulumi
import pulumi_azure as azure

example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_frontdoor_profile = azure.cdn.FrontdoorProfile("exampleFrontdoorProfile", resource_group_name=example_resource_group.name)
example_frontdoor_origin_group = azure.cdn.FrontdoorOriginGroup("exampleFrontdoorOriginGroup",
    cdn_frontdoor_profile_id=example_frontdoor_profile.id,
    session_affinity_enabled=True,
    restore_traffic_time_to_healed_or_new_endpoint_in_minutes=10,
    health_probe=azure.cdn.FrontdoorOriginGroupHealthProbeArgs(
        interval_in_seconds=240,
        path="/healthProbe",
        protocol="Https",
        request_type="HEAD",
    ),
    load_balancing=azure.cdn.FrontdoorOriginGroupLoadBalancingArgs(
        additional_latency_in_milliseconds=0,
        sample_size=16,
        successful_samples_required=3,
    ))
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleFrontdoorProfile = new azure.cdn.FrontdoorProfile("exampleFrontdoorProfile", {resourceGroupName: exampleResourceGroup.name});
const exampleFrontdoorOriginGroup = new azure.cdn.FrontdoorOriginGroup("exampleFrontdoorOriginGroup", {
    cdnFrontdoorProfileId: exampleFrontdoorProfile.id,
    sessionAffinityEnabled: true,
    restoreTrafficTimeToHealedOrNewEndpointInMinutes: 10,
    healthProbe: {
        intervalInSeconds: 240,
        path: "/healthProbe",
        protocol: "Https",
        requestType: "HEAD",
    },
    loadBalancing: {
        additionalLatencyInMilliseconds: 0,
        sampleSize: 16,
        successfulSamplesRequired: 3,
    },
});
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    properties:
      location: West Europe
  exampleFrontdoorProfile:
    type: azure:cdn:FrontdoorProfile
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
  exampleFrontdoorOriginGroup:
    type: azure:cdn:FrontdoorOriginGroup
    properties:
      cdnFrontdoorProfileId: ${exampleFrontdoorProfile.id}
      sessionAffinityEnabled: true
      restoreTrafficTimeToHealedOrNewEndpointInMinutes: 10
      healthProbe:
        intervalInSeconds: 240
        path: /healthProbe
        protocol: Https
        requestType: HEAD
      loadBalancing:
        additionalLatencyInMilliseconds: 0
        sampleSize: 16
        successfulSamplesRequired: 3

Create FrontdoorOriginGroup Resource

new FrontdoorOriginGroup(name: string, args: FrontdoorOriginGroupArgs, opts?: CustomResourceOptions);
@overload
def FrontdoorOriginGroup(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         cdn_frontdoor_profile_id: Optional[str] = None,
                         health_probe: Optional[FrontdoorOriginGroupHealthProbeArgs] = None,
                         load_balancing: Optional[FrontdoorOriginGroupLoadBalancingArgs] = None,
                         name: Optional[str] = None,
                         restore_traffic_time_to_healed_or_new_endpoint_in_minutes: Optional[int] = None,
                         session_affinity_enabled: Optional[bool] = None)
@overload
def FrontdoorOriginGroup(resource_name: str,
                         args: FrontdoorOriginGroupArgs,
                         opts: Optional[ResourceOptions] = None)
func NewFrontdoorOriginGroup(ctx *Context, name string, args FrontdoorOriginGroupArgs, opts ...ResourceOption) (*FrontdoorOriginGroup, error)
public FrontdoorOriginGroup(string name, FrontdoorOriginGroupArgs args, CustomResourceOptions? opts = null)
public FrontdoorOriginGroup(String name, FrontdoorOriginGroupArgs args)
public FrontdoorOriginGroup(String name, FrontdoorOriginGroupArgs args, CustomResourceOptions options)
type: azure:cdn:FrontdoorOriginGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args FrontdoorOriginGroupArgs
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 FrontdoorOriginGroupArgs
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 FrontdoorOriginGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args FrontdoorOriginGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args FrontdoorOriginGroupArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

CdnFrontdoorProfileId string

The ID of the Front Door Profile within which this Front Door Origin Group should exist. Changing this forces a new Front Door Origin Group to be created.

LoadBalancing FrontdoorOriginGroupLoadBalancingArgs

A load_balancing block as defined below.

HealthProbe FrontdoorOriginGroupHealthProbeArgs

A health_probe block as defined below.

Name string

The name which should be used for this Front Door Origin Group. Changing this forces a new Front Door Origin Group to be created.

RestoreTrafficTimeToHealedOrNewEndpointInMinutes int

Specifies the amount of time which should elapse before shifting traffic to another endpoint when a healthy endpoint becomes unhealthy or a new endpoint is added. Possible values are between 0 and 50 minutes (inclusive). Default is 10 minutes.

SessionAffinityEnabled bool

Specifies whether session affinity should be enabled on this host. Defaults to true.

CdnFrontdoorProfileId string

The ID of the Front Door Profile within which this Front Door Origin Group should exist. Changing this forces a new Front Door Origin Group to be created.

LoadBalancing FrontdoorOriginGroupLoadBalancingArgs

A load_balancing block as defined below.

HealthProbe FrontdoorOriginGroupHealthProbeArgs

A health_probe block as defined below.

Name string

The name which should be used for this Front Door Origin Group. Changing this forces a new Front Door Origin Group to be created.

RestoreTrafficTimeToHealedOrNewEndpointInMinutes int

Specifies the amount of time which should elapse before shifting traffic to another endpoint when a healthy endpoint becomes unhealthy or a new endpoint is added. Possible values are between 0 and 50 minutes (inclusive). Default is 10 minutes.

SessionAffinityEnabled bool

Specifies whether session affinity should be enabled on this host. Defaults to true.

cdnFrontdoorProfileId String

The ID of the Front Door Profile within which this Front Door Origin Group should exist. Changing this forces a new Front Door Origin Group to be created.

loadBalancing FrontdoorOriginGroupLoadBalancingArgs

A load_balancing block as defined below.

healthProbe FrontdoorOriginGroupHealthProbeArgs

A health_probe block as defined below.

name String

The name which should be used for this Front Door Origin Group. Changing this forces a new Front Door Origin Group to be created.

restoreTrafficTimeToHealedOrNewEndpointInMinutes Integer

Specifies the amount of time which should elapse before shifting traffic to another endpoint when a healthy endpoint becomes unhealthy or a new endpoint is added. Possible values are between 0 and 50 minutes (inclusive). Default is 10 minutes.

sessionAffinityEnabled Boolean

Specifies whether session affinity should be enabled on this host. Defaults to true.

cdnFrontdoorProfileId string

The ID of the Front Door Profile within which this Front Door Origin Group should exist. Changing this forces a new Front Door Origin Group to be created.

loadBalancing FrontdoorOriginGroupLoadBalancingArgs

A load_balancing block as defined below.

healthProbe FrontdoorOriginGroupHealthProbeArgs

A health_probe block as defined below.

name string

The name which should be used for this Front Door Origin Group. Changing this forces a new Front Door Origin Group to be created.

restoreTrafficTimeToHealedOrNewEndpointInMinutes number

Specifies the amount of time which should elapse before shifting traffic to another endpoint when a healthy endpoint becomes unhealthy or a new endpoint is added. Possible values are between 0 and 50 minutes (inclusive). Default is 10 minutes.

sessionAffinityEnabled boolean

Specifies whether session affinity should be enabled on this host. Defaults to true.

cdn_frontdoor_profile_id str

The ID of the Front Door Profile within which this Front Door Origin Group should exist. Changing this forces a new Front Door Origin Group to be created.

load_balancing FrontdoorOriginGroupLoadBalancingArgs

A load_balancing block as defined below.

health_probe FrontdoorOriginGroupHealthProbeArgs

A health_probe block as defined below.

name str

The name which should be used for this Front Door Origin Group. Changing this forces a new Front Door Origin Group to be created.

restore_traffic_time_to_healed_or_new_endpoint_in_minutes int

Specifies the amount of time which should elapse before shifting traffic to another endpoint when a healthy endpoint becomes unhealthy or a new endpoint is added. Possible values are between 0 and 50 minutes (inclusive). Default is 10 minutes.

session_affinity_enabled bool

Specifies whether session affinity should be enabled on this host. Defaults to true.

cdnFrontdoorProfileId String

The ID of the Front Door Profile within which this Front Door Origin Group should exist. Changing this forces a new Front Door Origin Group to be created.

loadBalancing Property Map

A load_balancing block as defined below.

healthProbe Property Map

A health_probe block as defined below.

name String

The name which should be used for this Front Door Origin Group. Changing this forces a new Front Door Origin Group to be created.

restoreTrafficTimeToHealedOrNewEndpointInMinutes Number

Specifies the amount of time which should elapse before shifting traffic to another endpoint when a healthy endpoint becomes unhealthy or a new endpoint is added. Possible values are between 0 and 50 minutes (inclusive). Default is 10 minutes.

sessionAffinityEnabled Boolean

Specifies whether session affinity should be enabled on this host. Defaults to true.

Outputs

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

Get an existing FrontdoorOriginGroup 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?: FrontdoorOriginGroupState, opts?: CustomResourceOptions): FrontdoorOriginGroup
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        cdn_frontdoor_profile_id: Optional[str] = None,
        health_probe: Optional[FrontdoorOriginGroupHealthProbeArgs] = None,
        load_balancing: Optional[FrontdoorOriginGroupLoadBalancingArgs] = None,
        name: Optional[str] = None,
        restore_traffic_time_to_healed_or_new_endpoint_in_minutes: Optional[int] = None,
        session_affinity_enabled: Optional[bool] = None) -> FrontdoorOriginGroup
func GetFrontdoorOriginGroup(ctx *Context, name string, id IDInput, state *FrontdoorOriginGroupState, opts ...ResourceOption) (*FrontdoorOriginGroup, error)
public static FrontdoorOriginGroup Get(string name, Input<string> id, FrontdoorOriginGroupState? state, CustomResourceOptions? opts = null)
public static FrontdoorOriginGroup get(String name, Output<String> id, FrontdoorOriginGroupState 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:
CdnFrontdoorProfileId string

The ID of the Front Door Profile within which this Front Door Origin Group should exist. Changing this forces a new Front Door Origin Group to be created.

HealthProbe FrontdoorOriginGroupHealthProbeArgs

A health_probe block as defined below.

LoadBalancing FrontdoorOriginGroupLoadBalancingArgs

A load_balancing block as defined below.

Name string

The name which should be used for this Front Door Origin Group. Changing this forces a new Front Door Origin Group to be created.

RestoreTrafficTimeToHealedOrNewEndpointInMinutes int

Specifies the amount of time which should elapse before shifting traffic to another endpoint when a healthy endpoint becomes unhealthy or a new endpoint is added. Possible values are between 0 and 50 minutes (inclusive). Default is 10 minutes.

SessionAffinityEnabled bool

Specifies whether session affinity should be enabled on this host. Defaults to true.

CdnFrontdoorProfileId string

The ID of the Front Door Profile within which this Front Door Origin Group should exist. Changing this forces a new Front Door Origin Group to be created.

HealthProbe FrontdoorOriginGroupHealthProbeArgs

A health_probe block as defined below.

LoadBalancing FrontdoorOriginGroupLoadBalancingArgs

A load_balancing block as defined below.

Name string

The name which should be used for this Front Door Origin Group. Changing this forces a new Front Door Origin Group to be created.

RestoreTrafficTimeToHealedOrNewEndpointInMinutes int

Specifies the amount of time which should elapse before shifting traffic to another endpoint when a healthy endpoint becomes unhealthy or a new endpoint is added. Possible values are between 0 and 50 minutes (inclusive). Default is 10 minutes.

SessionAffinityEnabled bool

Specifies whether session affinity should be enabled on this host. Defaults to true.

cdnFrontdoorProfileId String

The ID of the Front Door Profile within which this Front Door Origin Group should exist. Changing this forces a new Front Door Origin Group to be created.

healthProbe FrontdoorOriginGroupHealthProbeArgs

A health_probe block as defined below.

loadBalancing FrontdoorOriginGroupLoadBalancingArgs

A load_balancing block as defined below.

name String

The name which should be used for this Front Door Origin Group. Changing this forces a new Front Door Origin Group to be created.

restoreTrafficTimeToHealedOrNewEndpointInMinutes Integer

Specifies the amount of time which should elapse before shifting traffic to another endpoint when a healthy endpoint becomes unhealthy or a new endpoint is added. Possible values are between 0 and 50 minutes (inclusive). Default is 10 minutes.

sessionAffinityEnabled Boolean

Specifies whether session affinity should be enabled on this host. Defaults to true.

cdnFrontdoorProfileId string

The ID of the Front Door Profile within which this Front Door Origin Group should exist. Changing this forces a new Front Door Origin Group to be created.

healthProbe FrontdoorOriginGroupHealthProbeArgs

A health_probe block as defined below.

loadBalancing FrontdoorOriginGroupLoadBalancingArgs

A load_balancing block as defined below.

name string

The name which should be used for this Front Door Origin Group. Changing this forces a new Front Door Origin Group to be created.

restoreTrafficTimeToHealedOrNewEndpointInMinutes number

Specifies the amount of time which should elapse before shifting traffic to another endpoint when a healthy endpoint becomes unhealthy or a new endpoint is added. Possible values are between 0 and 50 minutes (inclusive). Default is 10 minutes.

sessionAffinityEnabled boolean

Specifies whether session affinity should be enabled on this host. Defaults to true.

cdn_frontdoor_profile_id str

The ID of the Front Door Profile within which this Front Door Origin Group should exist. Changing this forces a new Front Door Origin Group to be created.

health_probe FrontdoorOriginGroupHealthProbeArgs

A health_probe block as defined below.

load_balancing FrontdoorOriginGroupLoadBalancingArgs

A load_balancing block as defined below.

name str

The name which should be used for this Front Door Origin Group. Changing this forces a new Front Door Origin Group to be created.

restore_traffic_time_to_healed_or_new_endpoint_in_minutes int

Specifies the amount of time which should elapse before shifting traffic to another endpoint when a healthy endpoint becomes unhealthy or a new endpoint is added. Possible values are between 0 and 50 minutes (inclusive). Default is 10 minutes.

session_affinity_enabled bool

Specifies whether session affinity should be enabled on this host. Defaults to true.

cdnFrontdoorProfileId String

The ID of the Front Door Profile within which this Front Door Origin Group should exist. Changing this forces a new Front Door Origin Group to be created.

healthProbe Property Map

A health_probe block as defined below.

loadBalancing Property Map

A load_balancing block as defined below.

name String

The name which should be used for this Front Door Origin Group. Changing this forces a new Front Door Origin Group to be created.

restoreTrafficTimeToHealedOrNewEndpointInMinutes Number

Specifies the amount of time which should elapse before shifting traffic to another endpoint when a healthy endpoint becomes unhealthy or a new endpoint is added. Possible values are between 0 and 50 minutes (inclusive). Default is 10 minutes.

sessionAffinityEnabled Boolean

Specifies whether session affinity should be enabled on this host. Defaults to true.

Supporting Types

FrontdoorOriginGroupHealthProbe

IntervalInSeconds int

Specifies the number of seconds between health probes. Possible values are between 5 and 31536000 seconds (inclusive).

Protocol string

Specifies the protocol to use for health probe. Possible values are Http and Https.

Path string

Specifies the path relative to the origin that is used to determine the health of the origin. Defaults to /.

RequestType string

Specifies the type of health probe request that is made. Possible values are GET and HEAD. Defaults to HEAD.

IntervalInSeconds int

Specifies the number of seconds between health probes. Possible values are between 5 and 31536000 seconds (inclusive).

Protocol string

Specifies the protocol to use for health probe. Possible values are Http and Https.

Path string

Specifies the path relative to the origin that is used to determine the health of the origin. Defaults to /.

RequestType string

Specifies the type of health probe request that is made. Possible values are GET and HEAD. Defaults to HEAD.

intervalInSeconds Integer

Specifies the number of seconds between health probes. Possible values are between 5 and 31536000 seconds (inclusive).

protocol String

Specifies the protocol to use for health probe. Possible values are Http and Https.

path String

Specifies the path relative to the origin that is used to determine the health of the origin. Defaults to /.

requestType String

Specifies the type of health probe request that is made. Possible values are GET and HEAD. Defaults to HEAD.

intervalInSeconds number

Specifies the number of seconds between health probes. Possible values are between 5 and 31536000 seconds (inclusive).

protocol string

Specifies the protocol to use for health probe. Possible values are Http and Https.

path string

Specifies the path relative to the origin that is used to determine the health of the origin. Defaults to /.

requestType string

Specifies the type of health probe request that is made. Possible values are GET and HEAD. Defaults to HEAD.

interval_in_seconds int

Specifies the number of seconds between health probes. Possible values are between 5 and 31536000 seconds (inclusive).

protocol str

Specifies the protocol to use for health probe. Possible values are Http and Https.

path str

Specifies the path relative to the origin that is used to determine the health of the origin. Defaults to /.

request_type str

Specifies the type of health probe request that is made. Possible values are GET and HEAD. Defaults to HEAD.

intervalInSeconds Number

Specifies the number of seconds between health probes. Possible values are between 5 and 31536000 seconds (inclusive).

protocol String

Specifies the protocol to use for health probe. Possible values are Http and Https.

path String

Specifies the path relative to the origin that is used to determine the health of the origin. Defaults to /.

requestType String

Specifies the type of health probe request that is made. Possible values are GET and HEAD. Defaults to HEAD.

FrontdoorOriginGroupLoadBalancing

AdditionalLatencyInMilliseconds int

Specifies the additional latency in milliseconds for probes to fall into the lowest latency bucket. Possible values are between 0 and 1000 seconds (inclusive). Defaults to 50.

SampleSize int

Specifies the number of samples to consider for load balancing decisions. Possible values are between 0 and 255 (inclusive). Defaults to 4.

SuccessfulSamplesRequired int

Specifies the number of samples within the sample period that must succeed. Possible values are between 0 and 255 (inclusive). Defaults to 3.

AdditionalLatencyInMilliseconds int

Specifies the additional latency in milliseconds for probes to fall into the lowest latency bucket. Possible values are between 0 and 1000 seconds (inclusive). Defaults to 50.

SampleSize int

Specifies the number of samples to consider for load balancing decisions. Possible values are between 0 and 255 (inclusive). Defaults to 4.

SuccessfulSamplesRequired int

Specifies the number of samples within the sample period that must succeed. Possible values are between 0 and 255 (inclusive). Defaults to 3.

additionalLatencyInMilliseconds Integer

Specifies the additional latency in milliseconds for probes to fall into the lowest latency bucket. Possible values are between 0 and 1000 seconds (inclusive). Defaults to 50.

sampleSize Integer

Specifies the number of samples to consider for load balancing decisions. Possible values are between 0 and 255 (inclusive). Defaults to 4.

successfulSamplesRequired Integer

Specifies the number of samples within the sample period that must succeed. Possible values are between 0 and 255 (inclusive). Defaults to 3.

additionalLatencyInMilliseconds number

Specifies the additional latency in milliseconds for probes to fall into the lowest latency bucket. Possible values are between 0 and 1000 seconds (inclusive). Defaults to 50.

sampleSize number

Specifies the number of samples to consider for load balancing decisions. Possible values are between 0 and 255 (inclusive). Defaults to 4.

successfulSamplesRequired number

Specifies the number of samples within the sample period that must succeed. Possible values are between 0 and 255 (inclusive). Defaults to 3.

additional_latency_in_milliseconds int

Specifies the additional latency in milliseconds for probes to fall into the lowest latency bucket. Possible values are between 0 and 1000 seconds (inclusive). Defaults to 50.

sample_size int

Specifies the number of samples to consider for load balancing decisions. Possible values are between 0 and 255 (inclusive). Defaults to 4.

successful_samples_required int

Specifies the number of samples within the sample period that must succeed. Possible values are between 0 and 255 (inclusive). Defaults to 3.

additionalLatencyInMilliseconds Number

Specifies the additional latency in milliseconds for probes to fall into the lowest latency bucket. Possible values are between 0 and 1000 seconds (inclusive). Defaults to 50.

sampleSize Number

Specifies the number of samples to consider for load balancing decisions. Possible values are between 0 and 255 (inclusive). Defaults to 4.

successfulSamplesRequired Number

Specifies the number of samples within the sample period that must succeed. Possible values are between 0 and 255 (inclusive). Defaults to 3.

Import

Front Door Origin Groups can be imported using the resource id, e.g.

 $ pulumi import azure:cdn/frontdoorOriginGroup:FrontdoorOriginGroup example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1/providers/Microsoft.Cdn/profiles/profile1/originGroups/originGroup1

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes

This Pulumi package is based on the azurerm Terraform Provider.