We recommend using Azure Native.
azure.appservice.FunctionAppHybridConnection
Explore with Pulumi AI
Manages a Function App Hybrid Connection.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
{
Location = "West Europe",
});
var exampleServicePlan = new Azure.AppService.ServicePlan("exampleServicePlan", new()
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
OsType = "Windows",
SkuName = "S1",
});
var exampleNamespace = new Azure.Relay.Namespace("exampleNamespace", new()
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
SkuName = "Standard",
});
var exampleHybridConnection = new Azure.Relay.HybridConnection("exampleHybridConnection", new()
{
ResourceGroupName = exampleResourceGroup.Name,
RelayNamespaceName = exampleNamespace.Name,
});
var exampleAccount = new Azure.Storage.Account("exampleAccount", new()
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
AccountTier = "Standard",
AccountReplicationType = "GRS",
});
var exampleWindowsWebApp = new Azure.AppService.WindowsWebApp("exampleWindowsWebApp", new()
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
ServicePlanId = exampleServicePlan.Id,
SiteConfig = null,
});
var exampleWindowsFunctionApp = new Azure.AppService.WindowsFunctionApp("exampleWindowsFunctionApp", new()
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
ServicePlanId = exampleServicePlan.Id,
StorageAccountName = exampleAccount.Name,
StorageAccountAccessKey = exampleAccount.PrimaryAccessKey,
SiteConfig = null,
});
var exampleFunctionAppHybridConnection = new Azure.AppService.FunctionAppHybridConnection("exampleFunctionAppHybridConnection", new()
{
FunctionAppId = exampleWindowsWebApp.Id,
RelayId = exampleHybridConnection.Id,
Hostname = "myhostname.example",
Port = 8081,
});
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appservice"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/relay"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
"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
}
exampleServicePlan, err := appservice.NewServicePlan(ctx, "exampleServicePlan", &appservice.ServicePlanArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
OsType: pulumi.String("Windows"),
SkuName: pulumi.String("S1"),
})
if err != nil {
return err
}
exampleNamespace, err := relay.NewNamespace(ctx, "exampleNamespace", &relay.NamespaceArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
SkuName: pulumi.String("Standard"),
})
if err != nil {
return err
}
exampleHybridConnection, err := relay.NewHybridConnection(ctx, "exampleHybridConnection", &relay.HybridConnectionArgs{
ResourceGroupName: exampleResourceGroup.Name,
RelayNamespaceName: exampleNamespace.Name,
})
if err != nil {
return err
}
exampleAccount, err := storage.NewAccount(ctx, "exampleAccount", &storage.AccountArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("GRS"),
})
if err != nil {
return err
}
exampleWindowsWebApp, err := appservice.NewWindowsWebApp(ctx, "exampleWindowsWebApp", &appservice.WindowsWebAppArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
ServicePlanId: exampleServicePlan.ID(),
SiteConfig: nil,
})
if err != nil {
return err
}
_, err = appservice.NewWindowsFunctionApp(ctx, "exampleWindowsFunctionApp", &appservice.WindowsFunctionAppArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
ServicePlanId: exampleServicePlan.ID(),
StorageAccountName: exampleAccount.Name,
StorageAccountAccessKey: exampleAccount.PrimaryAccessKey,
SiteConfig: nil,
})
if err != nil {
return err
}
_, err = appservice.NewFunctionAppHybridConnection(ctx, "exampleFunctionAppHybridConnection", &appservice.FunctionAppHybridConnectionArgs{
FunctionAppId: exampleWindowsWebApp.ID(),
RelayId: exampleHybridConnection.ID(),
Hostname: pulumi.String("myhostname.example"),
Port: pulumi.Int(8081),
})
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.appservice.ServicePlan;
import com.pulumi.azure.appservice.ServicePlanArgs;
import com.pulumi.azure.relay.Namespace;
import com.pulumi.azure.relay.NamespaceArgs;
import com.pulumi.azure.relay.HybridConnection;
import com.pulumi.azure.relay.HybridConnectionArgs;
import com.pulumi.azure.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
import com.pulumi.azure.appservice.WindowsWebApp;
import com.pulumi.azure.appservice.WindowsWebAppArgs;
import com.pulumi.azure.appservice.inputs.WindowsWebAppSiteConfigArgs;
import com.pulumi.azure.appservice.WindowsFunctionApp;
import com.pulumi.azure.appservice.WindowsFunctionAppArgs;
import com.pulumi.azure.appservice.inputs.WindowsFunctionAppSiteConfigArgs;
import com.pulumi.azure.appservice.FunctionAppHybridConnection;
import com.pulumi.azure.appservice.FunctionAppHybridConnectionArgs;
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 exampleServicePlan = new ServicePlan("exampleServicePlan", ServicePlanArgs.builder()
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.osType("Windows")
.skuName("S1")
.build());
var exampleNamespace = new Namespace("exampleNamespace", NamespaceArgs.builder()
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.skuName("Standard")
.build());
var exampleHybridConnection = new HybridConnection("exampleHybridConnection", HybridConnectionArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.relayNamespaceName(exampleNamespace.name())
.build());
var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.accountTier("Standard")
.accountReplicationType("GRS")
.build());
var exampleWindowsWebApp = new WindowsWebApp("exampleWindowsWebApp", WindowsWebAppArgs.builder()
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.servicePlanId(exampleServicePlan.id())
.siteConfig()
.build());
var exampleWindowsFunctionApp = new WindowsFunctionApp("exampleWindowsFunctionApp", WindowsFunctionAppArgs.builder()
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.servicePlanId(exampleServicePlan.id())
.storageAccountName(exampleAccount.name())
.storageAccountAccessKey(exampleAccount.primaryAccessKey())
.siteConfig()
.build());
var exampleFunctionAppHybridConnection = new FunctionAppHybridConnection("exampleFunctionAppHybridConnection", FunctionAppHybridConnectionArgs.builder()
.functionAppId(exampleWindowsWebApp.id())
.relayId(exampleHybridConnection.id())
.hostname("myhostname.example")
.port(8081)
.build());
}
}
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_service_plan = azure.appservice.ServicePlan("exampleServicePlan",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
os_type="Windows",
sku_name="S1")
example_namespace = azure.relay.Namespace("exampleNamespace",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
sku_name="Standard")
example_hybrid_connection = azure.relay.HybridConnection("exampleHybridConnection",
resource_group_name=example_resource_group.name,
relay_namespace_name=example_namespace.name)
example_account = azure.storage.Account("exampleAccount",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
account_tier="Standard",
account_replication_type="GRS")
example_windows_web_app = azure.appservice.WindowsWebApp("exampleWindowsWebApp",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
service_plan_id=example_service_plan.id,
site_config=azure.appservice.WindowsWebAppSiteConfigArgs())
example_windows_function_app = azure.appservice.WindowsFunctionApp("exampleWindowsFunctionApp",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
service_plan_id=example_service_plan.id,
storage_account_name=example_account.name,
storage_account_access_key=example_account.primary_access_key,
site_config=azure.appservice.WindowsFunctionAppSiteConfigArgs())
example_function_app_hybrid_connection = azure.appservice.FunctionAppHybridConnection("exampleFunctionAppHybridConnection",
function_app_id=example_windows_web_app.id,
relay_id=example_hybrid_connection.id,
hostname="myhostname.example",
port=8081)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleServicePlan = new azure.appservice.ServicePlan("exampleServicePlan", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
osType: "Windows",
skuName: "S1",
});
const exampleNamespace = new azure.relay.Namespace("exampleNamespace", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
skuName: "Standard",
});
const exampleHybridConnection = new azure.relay.HybridConnection("exampleHybridConnection", {
resourceGroupName: exampleResourceGroup.name,
relayNamespaceName: exampleNamespace.name,
});
const exampleAccount = new azure.storage.Account("exampleAccount", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
accountTier: "Standard",
accountReplicationType: "GRS",
});
const exampleWindowsWebApp = new azure.appservice.WindowsWebApp("exampleWindowsWebApp", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
servicePlanId: exampleServicePlan.id,
siteConfig: {},
});
const exampleWindowsFunctionApp = new azure.appservice.WindowsFunctionApp("exampleWindowsFunctionApp", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
servicePlanId: exampleServicePlan.id,
storageAccountName: exampleAccount.name,
storageAccountAccessKey: exampleAccount.primaryAccessKey,
siteConfig: {},
});
const exampleFunctionAppHybridConnection = new azure.appservice.FunctionAppHybridConnection("exampleFunctionAppHybridConnection", {
functionAppId: exampleWindowsWebApp.id,
relayId: exampleHybridConnection.id,
hostname: "myhostname.example",
port: 8081,
});
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
properties:
location: West Europe
exampleServicePlan:
type: azure:appservice:ServicePlan
properties:
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.name}
osType: Windows
skuName: S1
exampleNamespace:
type: azure:relay:Namespace
properties:
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.name}
skuName: Standard
exampleHybridConnection:
type: azure:relay:HybridConnection
properties:
resourceGroupName: ${exampleResourceGroup.name}
relayNamespaceName: ${exampleNamespace.name}
exampleAccount:
type: azure:storage:Account
properties:
resourceGroupName: ${exampleResourceGroup.name}
location: ${exampleResourceGroup.location}
accountTier: Standard
accountReplicationType: GRS
exampleWindowsWebApp:
type: azure:appservice:WindowsWebApp
properties:
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.name}
servicePlanId: ${exampleServicePlan.id}
siteConfig: {}
exampleWindowsFunctionApp:
type: azure:appservice:WindowsFunctionApp
properties:
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.name}
servicePlanId: ${exampleServicePlan.id}
storageAccountName: ${exampleAccount.name}
storageAccountAccessKey: ${exampleAccount.primaryAccessKey}
siteConfig: {}
exampleFunctionAppHybridConnection:
type: azure:appservice:FunctionAppHybridConnection
properties:
functionAppId: ${exampleWindowsWebApp.id}
relayId: ${exampleHybridConnection.id}
hostname: myhostname.example
port: 8081
Create FunctionAppHybridConnection Resource
new FunctionAppHybridConnection(name: string, args: FunctionAppHybridConnectionArgs, opts?: CustomResourceOptions);
@overload
def FunctionAppHybridConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
function_app_id: Optional[str] = None,
hostname: Optional[str] = None,
port: Optional[int] = None,
relay_id: Optional[str] = None,
send_key_name: Optional[str] = None)
@overload
def FunctionAppHybridConnection(resource_name: str,
args: FunctionAppHybridConnectionArgs,
opts: Optional[ResourceOptions] = None)
func NewFunctionAppHybridConnection(ctx *Context, name string, args FunctionAppHybridConnectionArgs, opts ...ResourceOption) (*FunctionAppHybridConnection, error)
public FunctionAppHybridConnection(string name, FunctionAppHybridConnectionArgs args, CustomResourceOptions? opts = null)
public FunctionAppHybridConnection(String name, FunctionAppHybridConnectionArgs args)
public FunctionAppHybridConnection(String name, FunctionAppHybridConnectionArgs args, CustomResourceOptions options)
type: azure:appservice:FunctionAppHybridConnection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FunctionAppHybridConnectionArgs
- 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 FunctionAppHybridConnectionArgs
- 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 FunctionAppHybridConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FunctionAppHybridConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FunctionAppHybridConnectionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
FunctionAppHybridConnection 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 FunctionAppHybridConnection resource accepts the following input properties:
- Function
App stringId The ID of the Function App for this Hybrid Connection. Changing this forces a new resource to be created.
- Hostname string
The hostname of the endpoint.
- Port int
The port to use for the endpoint
- Relay
Id string The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
- Send
Key stringName The name of the Relay key with
Send
permission to use. Defaults toRootManageSharedAccessKey
- Function
App stringId The ID of the Function App for this Hybrid Connection. Changing this forces a new resource to be created.
- Hostname string
The hostname of the endpoint.
- Port int
The port to use for the endpoint
- Relay
Id string The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
- Send
Key stringName The name of the Relay key with
Send
permission to use. Defaults toRootManageSharedAccessKey
- function
App StringId The ID of the Function App for this Hybrid Connection. Changing this forces a new resource to be created.
- hostname String
The hostname of the endpoint.
- port Integer
The port to use for the endpoint
- relay
Id String The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
- send
Key StringName The name of the Relay key with
Send
permission to use. Defaults toRootManageSharedAccessKey
- function
App stringId The ID of the Function App for this Hybrid Connection. Changing this forces a new resource to be created.
- hostname string
The hostname of the endpoint.
- port number
The port to use for the endpoint
- relay
Id string The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
- send
Key stringName The name of the Relay key with
Send
permission to use. Defaults toRootManageSharedAccessKey
- function_
app_ strid The ID of the Function App for this Hybrid Connection. Changing this forces a new resource to be created.
- hostname str
The hostname of the endpoint.
- port int
The port to use for the endpoint
- relay_
id str The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
- send_
key_ strname The name of the Relay key with
Send
permission to use. Defaults toRootManageSharedAccessKey
- function
App StringId The ID of the Function App for this Hybrid Connection. Changing this forces a new resource to be created.
- hostname String
The hostname of the endpoint.
- port Number
The port to use for the endpoint
- relay
Id String The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
- send
Key StringName The name of the Relay key with
Send
permission to use. Defaults toRootManageSharedAccessKey
Outputs
All input properties are implicitly available as output properties. Additionally, the FunctionAppHybridConnection resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Namespace
Name string The name of the Relay Namespace.
- Relay
Name string The name of the Relay in use.
- Send
Key stringValue The Primary Access Key for the
send_key_name
- Service
Bus stringNamespace The Service Bus Namespace.
- Service
Bus stringSuffix The suffix for the endpoint.
- Id string
The provider-assigned unique ID for this managed resource.
- Namespace
Name string The name of the Relay Namespace.
- Relay
Name string The name of the Relay in use.
- Send
Key stringValue The Primary Access Key for the
send_key_name
- Service
Bus stringNamespace The Service Bus Namespace.
- Service
Bus stringSuffix The suffix for the endpoint.
- id String
The provider-assigned unique ID for this managed resource.
- namespace
Name String The name of the Relay Namespace.
- relay
Name String The name of the Relay in use.
- send
Key StringValue The Primary Access Key for the
send_key_name
- service
Bus StringNamespace The Service Bus Namespace.
- service
Bus StringSuffix The suffix for the endpoint.
- id string
The provider-assigned unique ID for this managed resource.
- namespace
Name string The name of the Relay Namespace.
- relay
Name string The name of the Relay in use.
- send
Key stringValue The Primary Access Key for the
send_key_name
- service
Bus stringNamespace The Service Bus Namespace.
- service
Bus stringSuffix The suffix for the endpoint.
- id str
The provider-assigned unique ID for this managed resource.
- namespace_
name str The name of the Relay Namespace.
- relay_
name str The name of the Relay in use.
- send_
key_ strvalue The Primary Access Key for the
send_key_name
- service_
bus_ strnamespace The Service Bus Namespace.
- service_
bus_ strsuffix The suffix for the endpoint.
- id String
The provider-assigned unique ID for this managed resource.
- namespace
Name String The name of the Relay Namespace.
- relay
Name String The name of the Relay in use.
- send
Key StringValue The Primary Access Key for the
send_key_name
- service
Bus StringNamespace The Service Bus Namespace.
- service
Bus StringSuffix The suffix for the endpoint.
Look up Existing FunctionAppHybridConnection Resource
Get an existing FunctionAppHybridConnection 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?: FunctionAppHybridConnectionState, opts?: CustomResourceOptions): FunctionAppHybridConnection
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
function_app_id: Optional[str] = None,
hostname: Optional[str] = None,
namespace_name: Optional[str] = None,
port: Optional[int] = None,
relay_id: Optional[str] = None,
relay_name: Optional[str] = None,
send_key_name: Optional[str] = None,
send_key_value: Optional[str] = None,
service_bus_namespace: Optional[str] = None,
service_bus_suffix: Optional[str] = None) -> FunctionAppHybridConnection
func GetFunctionAppHybridConnection(ctx *Context, name string, id IDInput, state *FunctionAppHybridConnectionState, opts ...ResourceOption) (*FunctionAppHybridConnection, error)
public static FunctionAppHybridConnection Get(string name, Input<string> id, FunctionAppHybridConnectionState? state, CustomResourceOptions? opts = null)
public static FunctionAppHybridConnection get(String name, Output<String> id, FunctionAppHybridConnectionState 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.
- Function
App stringId The ID of the Function App for this Hybrid Connection. Changing this forces a new resource to be created.
- Hostname string
The hostname of the endpoint.
- Namespace
Name string The name of the Relay Namespace.
- Port int
The port to use for the endpoint
- Relay
Id string The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
- Relay
Name string The name of the Relay in use.
- Send
Key stringName The name of the Relay key with
Send
permission to use. Defaults toRootManageSharedAccessKey
- Send
Key stringValue The Primary Access Key for the
send_key_name
- Service
Bus stringNamespace The Service Bus Namespace.
- Service
Bus stringSuffix The suffix for the endpoint.
- Function
App stringId The ID of the Function App for this Hybrid Connection. Changing this forces a new resource to be created.
- Hostname string
The hostname of the endpoint.
- Namespace
Name string The name of the Relay Namespace.
- Port int
The port to use for the endpoint
- Relay
Id string The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
- Relay
Name string The name of the Relay in use.
- Send
Key stringName The name of the Relay key with
Send
permission to use. Defaults toRootManageSharedAccessKey
- Send
Key stringValue The Primary Access Key for the
send_key_name
- Service
Bus stringNamespace The Service Bus Namespace.
- Service
Bus stringSuffix The suffix for the endpoint.
- function
App StringId The ID of the Function App for this Hybrid Connection. Changing this forces a new resource to be created.
- hostname String
The hostname of the endpoint.
- namespace
Name String The name of the Relay Namespace.
- port Integer
The port to use for the endpoint
- relay
Id String The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
- relay
Name String The name of the Relay in use.
- send
Key StringName The name of the Relay key with
Send
permission to use. Defaults toRootManageSharedAccessKey
- send
Key StringValue The Primary Access Key for the
send_key_name
- service
Bus StringNamespace The Service Bus Namespace.
- service
Bus StringSuffix The suffix for the endpoint.
- function
App stringId The ID of the Function App for this Hybrid Connection. Changing this forces a new resource to be created.
- hostname string
The hostname of the endpoint.
- namespace
Name string The name of the Relay Namespace.
- port number
The port to use for the endpoint
- relay
Id string The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
- relay
Name string The name of the Relay in use.
- send
Key stringName The name of the Relay key with
Send
permission to use. Defaults toRootManageSharedAccessKey
- send
Key stringValue The Primary Access Key for the
send_key_name
- service
Bus stringNamespace The Service Bus Namespace.
- service
Bus stringSuffix The suffix for the endpoint.
- function_
app_ strid The ID of the Function App for this Hybrid Connection. Changing this forces a new resource to be created.
- hostname str
The hostname of the endpoint.
- namespace_
name str The name of the Relay Namespace.
- port int
The port to use for the endpoint
- relay_
id str The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
- relay_
name str The name of the Relay in use.
- send_
key_ strname The name of the Relay key with
Send
permission to use. Defaults toRootManageSharedAccessKey
- send_
key_ strvalue The Primary Access Key for the
send_key_name
- service_
bus_ strnamespace The Service Bus Namespace.
- service_
bus_ strsuffix The suffix for the endpoint.
- function
App StringId The ID of the Function App for this Hybrid Connection. Changing this forces a new resource to be created.
- hostname String
The hostname of the endpoint.
- namespace
Name String The name of the Relay Namespace.
- port Number
The port to use for the endpoint
- relay
Id String The ID of the Relay Hybrid Connection to use. Changing this forces a new resource to be created.
- relay
Name String The name of the Relay in use.
- send
Key StringName The name of the Relay key with
Send
permission to use. Defaults toRootManageSharedAccessKey
- send
Key StringValue The Primary Access Key for the
send_key_name
- service
Bus StringNamespace The Service Bus Namespace.
- service
Bus StringSuffix The suffix for the endpoint.
Import
a Function App Hybrid Connection can be imported using the resource id
, e.g.
$ pulumi import azure:appservice/functionAppHybridConnection:FunctionAppHybridConnection example "/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.Web/sites/site1/hybridConnectionNamespaces/hybridConnectionNamespace1/relays/relay1"
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.