azure logo
Azure Classic v5.37.0, Mar 15 23

azure.cdn.getFrontdoorRuleSet

Use this data source to access information about an existing Front Door (standard/premium) Rule Set.

Example Usage

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

return await Deployment.RunAsync(() => 
{
    var example = Azure.Cdn.GetFrontdoorRuleSet.Invoke(new()
    {
        Name = "existing-rule-set",
        ProfileName = "existing-profile",
        ResourceGroupName = "existing-resources",
    });

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cdn.LookupFrontdoorRuleSet(ctx, &cdn.LookupFrontdoorRuleSetArgs{
			Name:              "existing-rule-set",
			ProfileName:       "existing-profile",
			ResourceGroupName: "existing-resources",
		}, nil)
		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.cdn.CdnFunctions;
import com.pulumi.azure.cdn.inputs.GetFrontdoorRuleSetArgs;
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 example = CdnFunctions.getFrontdoorRuleSet(GetFrontdoorRuleSetArgs.builder()
            .name("existing-rule-set")
            .profileName("existing-profile")
            .resourceGroupName("existing-resources")
            .build());

    }
}
import pulumi
import pulumi_azure as azure

example = azure.cdn.get_frontdoor_rule_set(name="existing-rule-set",
    profile_name="existing-profile",
    resource_group_name="existing-resources")
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = azure.cdn.getFrontdoorRuleSet({
    name: "existing-rule-set",
    profileName: "existing-profile",
    resourceGroupName: "existing-resources",
});
variables:
  example:
    fn::invoke:
      Function: azure:cdn:getFrontdoorRuleSet
      Arguments:
        name: existing-rule-set
        profileName: existing-profile
        resourceGroupName: existing-resources

Using getFrontdoorRuleSet

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getFrontdoorRuleSet(args: GetFrontdoorRuleSetArgs, opts?: InvokeOptions): Promise<GetFrontdoorRuleSetResult>
function getFrontdoorRuleSetOutput(args: GetFrontdoorRuleSetOutputArgs, opts?: InvokeOptions): Output<GetFrontdoorRuleSetResult>
def get_frontdoor_rule_set(name: Optional[str] = None,
                           profile_name: Optional[str] = None,
                           resource_group_name: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetFrontdoorRuleSetResult
def get_frontdoor_rule_set_output(name: Optional[pulumi.Input[str]] = None,
                           profile_name: Optional[pulumi.Input[str]] = None,
                           resource_group_name: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetFrontdoorRuleSetResult]
func LookupFrontdoorRuleSet(ctx *Context, args *LookupFrontdoorRuleSetArgs, opts ...InvokeOption) (*LookupFrontdoorRuleSetResult, error)
func LookupFrontdoorRuleSetOutput(ctx *Context, args *LookupFrontdoorRuleSetOutputArgs, opts ...InvokeOption) LookupFrontdoorRuleSetResultOutput

> Note: This function is named LookupFrontdoorRuleSet in the Go SDK.

public static class GetFrontdoorRuleSet 
{
    public static Task<GetFrontdoorRuleSetResult> InvokeAsync(GetFrontdoorRuleSetArgs args, InvokeOptions? opts = null)
    public static Output<GetFrontdoorRuleSetResult> Invoke(GetFrontdoorRuleSetInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetFrontdoorRuleSetResult> getFrontdoorRuleSet(GetFrontdoorRuleSetArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: azure:cdn/getFrontdoorRuleSet:getFrontdoorRuleSet
  arguments:
    # arguments dictionary

The following arguments are supported:

Name string

Specifies the name of the Front Door Rule Set to retrieve.

ProfileName string

Specifies the name of the Front Door Profile where this Front Door Rule Set exists.

ResourceGroupName string

Specifies the name of the Resource Group where the Front Door Profile exists.

Name string

Specifies the name of the Front Door Rule Set to retrieve.

ProfileName string

Specifies the name of the Front Door Profile where this Front Door Rule Set exists.

ResourceGroupName string

Specifies the name of the Resource Group where the Front Door Profile exists.

name String

Specifies the name of the Front Door Rule Set to retrieve.

profileName String

Specifies the name of the Front Door Profile where this Front Door Rule Set exists.

resourceGroupName String

Specifies the name of the Resource Group where the Front Door Profile exists.

name string

Specifies the name of the Front Door Rule Set to retrieve.

profileName string

Specifies the name of the Front Door Profile where this Front Door Rule Set exists.

resourceGroupName string

Specifies the name of the Resource Group where the Front Door Profile exists.

name str

Specifies the name of the Front Door Rule Set to retrieve.

profile_name str

Specifies the name of the Front Door Profile where this Front Door Rule Set exists.

resource_group_name str

Specifies the name of the Resource Group where the Front Door Profile exists.

name String

Specifies the name of the Front Door Rule Set to retrieve.

profileName String

Specifies the name of the Front Door Profile where this Front Door Rule Set exists.

resourceGroupName String

Specifies the name of the Resource Group where the Front Door Profile exists.

getFrontdoorRuleSet Result

The following output properties are available:

CdnFrontdoorProfileId string

The ID of the Front Door Profile within which this Front Door Rule Set exists.

Id string

The provider-assigned unique ID for this managed resource.

Name string
ProfileName string
ResourceGroupName string
CdnFrontdoorProfileId string

The ID of the Front Door Profile within which this Front Door Rule Set exists.

Id string

The provider-assigned unique ID for this managed resource.

Name string
ProfileName string
ResourceGroupName string
cdnFrontdoorProfileId String

The ID of the Front Door Profile within which this Front Door Rule Set exists.

id String

The provider-assigned unique ID for this managed resource.

name String
profileName String
resourceGroupName String
cdnFrontdoorProfileId string

The ID of the Front Door Profile within which this Front Door Rule Set exists.

id string

The provider-assigned unique ID for this managed resource.

name string
profileName string
resourceGroupName string
cdn_frontdoor_profile_id str

The ID of the Front Door Profile within which this Front Door Rule Set exists.

id str

The provider-assigned unique ID for this managed resource.

name str
profile_name str
resource_group_name str
cdnFrontdoorProfileId String

The ID of the Front Door Profile within which this Front Door Rule Set exists.

id String

The provider-assigned unique ID for this managed resource.

name String
profileName String
resourceGroupName String

Package Details

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

This Pulumi package is based on the azurerm Terraform Provider.