We recommend using Azure Native.
azure.signalr.Service
Explore with Pulumi AI
Manages an Azure SignalR service.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "my-signalr",
location: "West US",
});
const exampleService = new azure.signalr.Service("example", {
name: "tfex-signalr",
location: example.location,
resourceGroupName: example.name,
sku: {
name: "Free_F1",
capacity: 1,
},
cors: [{
allowedOrigins: ["http://www.example.com"],
}],
publicNetworkAccessEnabled: false,
connectivityLogsEnabled: true,
messagingLogsEnabled: true,
serviceMode: "Default",
upstreamEndpoints: [{
categoryPatterns: [
"connections",
"messages",
],
eventPatterns: ["*"],
hubPatterns: ["hub1"],
urlTemplate: "http://foo.com",
}],
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="my-signalr",
location="West US")
example_service = azure.signalr.Service("example",
name="tfex-signalr",
location=example.location,
resource_group_name=example.name,
sku={
"name": "Free_F1",
"capacity": 1,
},
cors=[{
"allowed_origins": ["http://www.example.com"],
}],
public_network_access_enabled=False,
connectivity_logs_enabled=True,
messaging_logs_enabled=True,
service_mode="Default",
upstream_endpoints=[{
"category_patterns": [
"connections",
"messages",
],
"event_patterns": ["*"],
"hub_patterns": ["hub1"],
"url_template": "http://foo.com",
}])
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/signalr"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("my-signalr"),
Location: pulumi.String("West US"),
})
if err != nil {
return err
}
_, err = signalr.NewService(ctx, "example", &signalr.ServiceArgs{
Name: pulumi.String("tfex-signalr"),
Location: example.Location,
ResourceGroupName: example.Name,
Sku: &signalr.ServiceSkuArgs{
Name: pulumi.String("Free_F1"),
Capacity: pulumi.Int(1),
},
Cors: signalr.ServiceCorArray{
&signalr.ServiceCorArgs{
AllowedOrigins: pulumi.StringArray{
pulumi.String("http://www.example.com"),
},
},
},
PublicNetworkAccessEnabled: pulumi.Bool(false),
ConnectivityLogsEnabled: pulumi.Bool(true),
MessagingLogsEnabled: pulumi.Bool(true),
ServiceMode: pulumi.String("Default"),
UpstreamEndpoints: signalr.ServiceUpstreamEndpointArray{
&signalr.ServiceUpstreamEndpointArgs{
CategoryPatterns: pulumi.StringArray{
pulumi.String("connections"),
pulumi.String("messages"),
},
EventPatterns: pulumi.StringArray{
pulumi.String("*"),
},
HubPatterns: pulumi.StringArray{
pulumi.String("hub1"),
},
UrlTemplate: pulumi.String("http://foo.com"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "my-signalr",
Location = "West US",
});
var exampleService = new Azure.SignalR.Service("example", new()
{
Name = "tfex-signalr",
Location = example.Location,
ResourceGroupName = example.Name,
Sku = new Azure.SignalR.Inputs.ServiceSkuArgs
{
Name = "Free_F1",
Capacity = 1,
},
Cors = new[]
{
new Azure.SignalR.Inputs.ServiceCorArgs
{
AllowedOrigins = new[]
{
"http://www.example.com",
},
},
},
PublicNetworkAccessEnabled = false,
ConnectivityLogsEnabled = true,
MessagingLogsEnabled = true,
ServiceMode = "Default",
UpstreamEndpoints = new[]
{
new Azure.SignalR.Inputs.ServiceUpstreamEndpointArgs
{
CategoryPatterns = new[]
{
"connections",
"messages",
},
EventPatterns = new[]
{
"*",
},
HubPatterns = new[]
{
"hub1",
},
UrlTemplate = "http://foo.com",
},
},
});
});
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.signalr.Service;
import com.pulumi.azure.signalr.ServiceArgs;
import com.pulumi.azure.signalr.inputs.ServiceSkuArgs;
import com.pulumi.azure.signalr.inputs.ServiceCorArgs;
import com.pulumi.azure.signalr.inputs.ServiceUpstreamEndpointArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("my-signalr")
.location("West US")
.build());
var exampleService = new Service("exampleService", ServiceArgs.builder()
.name("tfex-signalr")
.location(example.location())
.resourceGroupName(example.name())
.sku(ServiceSkuArgs.builder()
.name("Free_F1")
.capacity(1)
.build())
.cors(ServiceCorArgs.builder()
.allowedOrigins("http://www.example.com")
.build())
.publicNetworkAccessEnabled(false)
.connectivityLogsEnabled(true)
.messagingLogsEnabled(true)
.serviceMode("Default")
.upstreamEndpoints(ServiceUpstreamEndpointArgs.builder()
.categoryPatterns(
"connections",
"messages")
.eventPatterns("*")
.hubPatterns("hub1")
.urlTemplate("http://foo.com")
.build())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: my-signalr
location: West US
exampleService:
type: azure:signalr:Service
name: example
properties:
name: tfex-signalr
location: ${example.location}
resourceGroupName: ${example.name}
sku:
name: Free_F1
capacity: 1
cors:
- allowedOrigins:
- http://www.example.com
publicNetworkAccessEnabled: false
connectivityLogsEnabled: true
messagingLogsEnabled: true
serviceMode: Default
upstreamEndpoints:
- categoryPatterns:
- connections
- messages
eventPatterns:
- '*'
hubPatterns:
- hub1
urlTemplate: http://foo.com
Create Service Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Service(name: string, args: ServiceArgs, opts?: CustomResourceOptions);
@overload
def Service(resource_name: str,
args: ServiceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Service(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
sku: Optional[ServiceSkuArgs] = None,
identity: Optional[ServiceIdentityArgs] = None,
public_network_access_enabled: Optional[bool] = None,
aad_auth_enabled: Optional[bool] = None,
live_trace: Optional[ServiceLiveTraceArgs] = None,
live_trace_enabled: Optional[bool] = None,
local_auth_enabled: Optional[bool] = None,
location: Optional[str] = None,
messaging_logs_enabled: Optional[bool] = None,
name: Optional[str] = None,
http_request_logs_enabled: Optional[bool] = None,
cors: Optional[Sequence[ServiceCorArgs]] = None,
serverless_connection_timeout_in_seconds: Optional[int] = None,
service_mode: Optional[str] = None,
connectivity_logs_enabled: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None,
tls_client_cert_enabled: Optional[bool] = None,
upstream_endpoints: Optional[Sequence[ServiceUpstreamEndpointArgs]] = None)
func NewService(ctx *Context, name string, args ServiceArgs, opts ...ResourceOption) (*Service, error)
public Service(string name, ServiceArgs args, CustomResourceOptions? opts = null)
public Service(String name, ServiceArgs args)
public Service(String name, ServiceArgs args, CustomResourceOptions options)
type: azure:signalr:Service
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServiceArgs
- 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 ServiceArgs
- 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 ServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampleserviceResourceResourceFromSignalrservice = new Azure.SignalR.Service("exampleserviceResourceResourceFromSignalrservice", new()
{
ResourceGroupName = "string",
Sku = new Azure.SignalR.Inputs.ServiceSkuArgs
{
Capacity = 0,
Name = "string",
},
Identity = new Azure.SignalR.Inputs.ServiceIdentityArgs
{
Type = "string",
IdentityIds = new[]
{
"string",
},
PrincipalId = "string",
TenantId = "string",
},
PublicNetworkAccessEnabled = false,
AadAuthEnabled = false,
LiveTrace = new Azure.SignalR.Inputs.ServiceLiveTraceArgs
{
ConnectivityLogsEnabled = false,
Enabled = false,
HttpRequestLogsEnabled = false,
MessagingLogsEnabled = false,
},
LocalAuthEnabled = false,
Location = "string",
MessagingLogsEnabled = false,
Name = "string",
HttpRequestLogsEnabled = false,
Cors = new[]
{
new Azure.SignalR.Inputs.ServiceCorArgs
{
AllowedOrigins = new[]
{
"string",
},
},
},
ServerlessConnectionTimeoutInSeconds = 0,
ServiceMode = "string",
ConnectivityLogsEnabled = false,
Tags =
{
{ "string", "string" },
},
TlsClientCertEnabled = false,
UpstreamEndpoints = new[]
{
new Azure.SignalR.Inputs.ServiceUpstreamEndpointArgs
{
CategoryPatterns = new[]
{
"string",
},
EventPatterns = new[]
{
"string",
},
HubPatterns = new[]
{
"string",
},
UrlTemplate = "string",
UserAssignedIdentityId = "string",
},
},
});
example, err := signalr.NewService(ctx, "exampleserviceResourceResourceFromSignalrservice", &signalr.ServiceArgs{
ResourceGroupName: pulumi.String("string"),
Sku: &signalr.ServiceSkuArgs{
Capacity: pulumi.Int(0),
Name: pulumi.String("string"),
},
Identity: &signalr.ServiceIdentityArgs{
Type: pulumi.String("string"),
IdentityIds: pulumi.StringArray{
pulumi.String("string"),
},
PrincipalId: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
PublicNetworkAccessEnabled: pulumi.Bool(false),
AadAuthEnabled: pulumi.Bool(false),
LiveTrace: &signalr.ServiceLiveTraceArgs{
ConnectivityLogsEnabled: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
HttpRequestLogsEnabled: pulumi.Bool(false),
MessagingLogsEnabled: pulumi.Bool(false),
},
LocalAuthEnabled: pulumi.Bool(false),
Location: pulumi.String("string"),
MessagingLogsEnabled: pulumi.Bool(false),
Name: pulumi.String("string"),
HttpRequestLogsEnabled: pulumi.Bool(false),
Cors: signalr.ServiceCorArray{
&signalr.ServiceCorArgs{
AllowedOrigins: pulumi.StringArray{
pulumi.String("string"),
},
},
},
ServerlessConnectionTimeoutInSeconds: pulumi.Int(0),
ServiceMode: pulumi.String("string"),
ConnectivityLogsEnabled: pulumi.Bool(false),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TlsClientCertEnabled: pulumi.Bool(false),
UpstreamEndpoints: signalr.ServiceUpstreamEndpointArray{
&signalr.ServiceUpstreamEndpointArgs{
CategoryPatterns: pulumi.StringArray{
pulumi.String("string"),
},
EventPatterns: pulumi.StringArray{
pulumi.String("string"),
},
HubPatterns: pulumi.StringArray{
pulumi.String("string"),
},
UrlTemplate: pulumi.String("string"),
UserAssignedIdentityId: pulumi.String("string"),
},
},
})
var exampleserviceResourceResourceFromSignalrservice = new Service("exampleserviceResourceResourceFromSignalrservice", ServiceArgs.builder()
.resourceGroupName("string")
.sku(ServiceSkuArgs.builder()
.capacity(0)
.name("string")
.build())
.identity(ServiceIdentityArgs.builder()
.type("string")
.identityIds("string")
.principalId("string")
.tenantId("string")
.build())
.publicNetworkAccessEnabled(false)
.aadAuthEnabled(false)
.liveTrace(ServiceLiveTraceArgs.builder()
.connectivityLogsEnabled(false)
.enabled(false)
.httpRequestLogsEnabled(false)
.messagingLogsEnabled(false)
.build())
.localAuthEnabled(false)
.location("string")
.messagingLogsEnabled(false)
.name("string")
.httpRequestLogsEnabled(false)
.cors(ServiceCorArgs.builder()
.allowedOrigins("string")
.build())
.serverlessConnectionTimeoutInSeconds(0)
.serviceMode("string")
.connectivityLogsEnabled(false)
.tags(Map.of("string", "string"))
.tlsClientCertEnabled(false)
.upstreamEndpoints(ServiceUpstreamEndpointArgs.builder()
.categoryPatterns("string")
.eventPatterns("string")
.hubPatterns("string")
.urlTemplate("string")
.userAssignedIdentityId("string")
.build())
.build());
exampleservice_resource_resource_from_signalrservice = azure.signalr.Service("exampleserviceResourceResourceFromSignalrservice",
resource_group_name="string",
sku={
"capacity": 0,
"name": "string",
},
identity={
"type": "string",
"identityIds": ["string"],
"principalId": "string",
"tenantId": "string",
},
public_network_access_enabled=False,
aad_auth_enabled=False,
live_trace={
"connectivityLogsEnabled": False,
"enabled": False,
"httpRequestLogsEnabled": False,
"messagingLogsEnabled": False,
},
local_auth_enabled=False,
location="string",
messaging_logs_enabled=False,
name="string",
http_request_logs_enabled=False,
cors=[{
"allowedOrigins": ["string"],
}],
serverless_connection_timeout_in_seconds=0,
service_mode="string",
connectivity_logs_enabled=False,
tags={
"string": "string",
},
tls_client_cert_enabled=False,
upstream_endpoints=[{
"categoryPatterns": ["string"],
"eventPatterns": ["string"],
"hubPatterns": ["string"],
"urlTemplate": "string",
"userAssignedIdentityId": "string",
}])
const exampleserviceResourceResourceFromSignalrservice = new azure.signalr.Service("exampleserviceResourceResourceFromSignalrservice", {
resourceGroupName: "string",
sku: {
capacity: 0,
name: "string",
},
identity: {
type: "string",
identityIds: ["string"],
principalId: "string",
tenantId: "string",
},
publicNetworkAccessEnabled: false,
aadAuthEnabled: false,
liveTrace: {
connectivityLogsEnabled: false,
enabled: false,
httpRequestLogsEnabled: false,
messagingLogsEnabled: false,
},
localAuthEnabled: false,
location: "string",
messagingLogsEnabled: false,
name: "string",
httpRequestLogsEnabled: false,
cors: [{
allowedOrigins: ["string"],
}],
serverlessConnectionTimeoutInSeconds: 0,
serviceMode: "string",
connectivityLogsEnabled: false,
tags: {
string: "string",
},
tlsClientCertEnabled: false,
upstreamEndpoints: [{
categoryPatterns: ["string"],
eventPatterns: ["string"],
hubPatterns: ["string"],
urlTemplate: "string",
userAssignedIdentityId: "string",
}],
});
type: azure:signalr:Service
properties:
aadAuthEnabled: false
connectivityLogsEnabled: false
cors:
- allowedOrigins:
- string
httpRequestLogsEnabled: false
identity:
identityIds:
- string
principalId: string
tenantId: string
type: string
liveTrace:
connectivityLogsEnabled: false
enabled: false
httpRequestLogsEnabled: false
messagingLogsEnabled: false
localAuthEnabled: false
location: string
messagingLogsEnabled: false
name: string
publicNetworkAccessEnabled: false
resourceGroupName: string
serverlessConnectionTimeoutInSeconds: 0
serviceMode: string
sku:
capacity: 0
name: string
tags:
string: string
tlsClientCertEnabled: false
upstreamEndpoints:
- categoryPatterns:
- string
eventPatterns:
- string
hubPatterns:
- string
urlTemplate: string
userAssignedIdentityId: string
Service 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 Service resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group in which to create the SignalR service. Changing this forces a new resource to be created.
- Sku
Service
Sku - A
sku
block as documented below. - Aad
Auth boolEnabled - Whether to enable AAD auth? Defaults to
true
. - Connectivity
Logs boolEnabled - Specifies if Connectivity Logs are enabled or not. Defaults to
false
. - Cors
List<Service
Cor> - A
cors
block as documented below. - Http
Request boolLogs Enabled - Specifies if Http Request Logs are enabled or not. Defaults to
false
. - Identity
Service
Identity - An
identity
block as defined below. - Live
Trace ServiceLive Trace - A
live_trace
block as defined below. - Live
Trace boolEnabled - Local
Auth boolEnabled - Whether to enable local auth? Defaults to
true
. - Location string
- Specifies the supported Azure location where the SignalR service exists. Changing this forces a new resource to be created.
- Messaging
Logs boolEnabled - Specifies if Messaging Logs are enabled or not. Defaults to
false
. - Name string
- The name of the SignalR service. Changing this forces a new resource to be created.
- Public
Network boolAccess Enabled Whether to enable public network access? Defaults to
true
.Note:
public_network_access_enabled
cannot be set tofalse
inFree
sku tier.- Serverless
Connection intTimeout In Seconds - Specifies the client connection timeout. Defaults to
30
. - Service
Mode string - Specifies the service mode. Possible values are
Classic
,Default
andServerless
. Defaults toDefault
. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Tls
Client boolCert Enabled Whether to request client certificate during TLS handshake? Defaults to
false
.Note:
tls_client_cert_enabled
cannot be set totrue
inFree
sku tier.- Upstream
Endpoints List<ServiceUpstream Endpoint> - An
upstream_endpoint
block as documented below. Using this block requires the SignalR service to be Serverless. When creating multiple blocks they will be processed in the order they are defined in.
- Resource
Group stringName - The name of the resource group in which to create the SignalR service. Changing this forces a new resource to be created.
- Sku
Service
Sku Args - A
sku
block as documented below. - Aad
Auth boolEnabled - Whether to enable AAD auth? Defaults to
true
. - Connectivity
Logs boolEnabled - Specifies if Connectivity Logs are enabled or not. Defaults to
false
. - Cors
[]Service
Cor Args - A
cors
block as documented below. - Http
Request boolLogs Enabled - Specifies if Http Request Logs are enabled or not. Defaults to
false
. - Identity
Service
Identity Args - An
identity
block as defined below. - Live
Trace ServiceLive Trace Args - A
live_trace
block as defined below. - Live
Trace boolEnabled - Local
Auth boolEnabled - Whether to enable local auth? Defaults to
true
. - Location string
- Specifies the supported Azure location where the SignalR service exists. Changing this forces a new resource to be created.
- Messaging
Logs boolEnabled - Specifies if Messaging Logs are enabled or not. Defaults to
false
. - Name string
- The name of the SignalR service. Changing this forces a new resource to be created.
- Public
Network boolAccess Enabled Whether to enable public network access? Defaults to
true
.Note:
public_network_access_enabled
cannot be set tofalse
inFree
sku tier.- Serverless
Connection intTimeout In Seconds - Specifies the client connection timeout. Defaults to
30
. - Service
Mode string - Specifies the service mode. Possible values are
Classic
,Default
andServerless
. Defaults toDefault
. - map[string]string
- A mapping of tags to assign to the resource.
- Tls
Client boolCert Enabled Whether to request client certificate during TLS handshake? Defaults to
false
.Note:
tls_client_cert_enabled
cannot be set totrue
inFree
sku tier.- Upstream
Endpoints []ServiceUpstream Endpoint Args - An
upstream_endpoint
block as documented below. Using this block requires the SignalR service to be Serverless. When creating multiple blocks they will be processed in the order they are defined in.
- resource
Group StringName - The name of the resource group in which to create the SignalR service. Changing this forces a new resource to be created.
- sku
Service
Sku - A
sku
block as documented below. - aad
Auth BooleanEnabled - Whether to enable AAD auth? Defaults to
true
. - connectivity
Logs BooleanEnabled - Specifies if Connectivity Logs are enabled or not. Defaults to
false
. - cors
List<Service
Cor> - A
cors
block as documented below. - http
Request BooleanLogs Enabled - Specifies if Http Request Logs are enabled or not. Defaults to
false
. - identity
Service
Identity - An
identity
block as defined below. - live
Trace ServiceLive Trace - A
live_trace
block as defined below. - live
Trace BooleanEnabled - local
Auth BooleanEnabled - Whether to enable local auth? Defaults to
true
. - location String
- Specifies the supported Azure location where the SignalR service exists. Changing this forces a new resource to be created.
- messaging
Logs BooleanEnabled - Specifies if Messaging Logs are enabled or not. Defaults to
false
. - name String
- The name of the SignalR service. Changing this forces a new resource to be created.
- public
Network BooleanAccess Enabled Whether to enable public network access? Defaults to
true
.Note:
public_network_access_enabled
cannot be set tofalse
inFree
sku tier.- serverless
Connection IntegerTimeout In Seconds - Specifies the client connection timeout. Defaults to
30
. - service
Mode String - Specifies the service mode. Possible values are
Classic
,Default
andServerless
. Defaults toDefault
. - Map<String,String>
- A mapping of tags to assign to the resource.
- tls
Client BooleanCert Enabled Whether to request client certificate during TLS handshake? Defaults to
false
.Note:
tls_client_cert_enabled
cannot be set totrue
inFree
sku tier.- upstream
Endpoints List<ServiceUpstream Endpoint> - An
upstream_endpoint
block as documented below. Using this block requires the SignalR service to be Serverless. When creating multiple blocks they will be processed in the order they are defined in.
- resource
Group stringName - The name of the resource group in which to create the SignalR service. Changing this forces a new resource to be created.
- sku
Service
Sku - A
sku
block as documented below. - aad
Auth booleanEnabled - Whether to enable AAD auth? Defaults to
true
. - connectivity
Logs booleanEnabled - Specifies if Connectivity Logs are enabled or not. Defaults to
false
. - cors
Service
Cor[] - A
cors
block as documented below. - http
Request booleanLogs Enabled - Specifies if Http Request Logs are enabled or not. Defaults to
false
. - identity
Service
Identity - An
identity
block as defined below. - live
Trace ServiceLive Trace - A
live_trace
block as defined below. - live
Trace booleanEnabled - local
Auth booleanEnabled - Whether to enable local auth? Defaults to
true
. - location string
- Specifies the supported Azure location where the SignalR service exists. Changing this forces a new resource to be created.
- messaging
Logs booleanEnabled - Specifies if Messaging Logs are enabled or not. Defaults to
false
. - name string
- The name of the SignalR service. Changing this forces a new resource to be created.
- public
Network booleanAccess Enabled Whether to enable public network access? Defaults to
true
.Note:
public_network_access_enabled
cannot be set tofalse
inFree
sku tier.- serverless
Connection numberTimeout In Seconds - Specifies the client connection timeout. Defaults to
30
. - service
Mode string - Specifies the service mode. Possible values are
Classic
,Default
andServerless
. Defaults toDefault
. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- tls
Client booleanCert Enabled Whether to request client certificate during TLS handshake? Defaults to
false
.Note:
tls_client_cert_enabled
cannot be set totrue
inFree
sku tier.- upstream
Endpoints ServiceUpstream Endpoint[] - An
upstream_endpoint
block as documented below. Using this block requires the SignalR service to be Serverless. When creating multiple blocks they will be processed in the order they are defined in.
- resource_
group_ strname - The name of the resource group in which to create the SignalR service. Changing this forces a new resource to be created.
- sku
Service
Sku Args - A
sku
block as documented below. - aad_
auth_ boolenabled - Whether to enable AAD auth? Defaults to
true
. - connectivity_
logs_ boolenabled - Specifies if Connectivity Logs are enabled or not. Defaults to
false
. - cors
Sequence[Service
Cor Args] - A
cors
block as documented below. - http_
request_ boollogs_ enabled - Specifies if Http Request Logs are enabled or not. Defaults to
false
. - identity
Service
Identity Args - An
identity
block as defined below. - live_
trace ServiceLive Trace Args - A
live_trace
block as defined below. - live_
trace_ boolenabled - local_
auth_ boolenabled - Whether to enable local auth? Defaults to
true
. - location str
- Specifies the supported Azure location where the SignalR service exists. Changing this forces a new resource to be created.
- messaging_
logs_ boolenabled - Specifies if Messaging Logs are enabled or not. Defaults to
false
. - name str
- The name of the SignalR service. Changing this forces a new resource to be created.
- public_
network_ boolaccess_ enabled Whether to enable public network access? Defaults to
true
.Note:
public_network_access_enabled
cannot be set tofalse
inFree
sku tier.- serverless_
connection_ inttimeout_ in_ seconds - Specifies the client connection timeout. Defaults to
30
. - service_
mode str - Specifies the service mode. Possible values are
Classic
,Default
andServerless
. Defaults toDefault
. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- tls_
client_ boolcert_ enabled Whether to request client certificate during TLS handshake? Defaults to
false
.Note:
tls_client_cert_enabled
cannot be set totrue
inFree
sku tier.- upstream_
endpoints Sequence[ServiceUpstream Endpoint Args] - An
upstream_endpoint
block as documented below. Using this block requires the SignalR service to be Serverless. When creating multiple blocks they will be processed in the order they are defined in.
- resource
Group StringName - The name of the resource group in which to create the SignalR service. Changing this forces a new resource to be created.
- sku Property Map
- A
sku
block as documented below. - aad
Auth BooleanEnabled - Whether to enable AAD auth? Defaults to
true
. - connectivity
Logs BooleanEnabled - Specifies if Connectivity Logs are enabled or not. Defaults to
false
. - cors List<Property Map>
- A
cors
block as documented below. - http
Request BooleanLogs Enabled - Specifies if Http Request Logs are enabled or not. Defaults to
false
. - identity Property Map
- An
identity
block as defined below. - live
Trace Property Map - A
live_trace
block as defined below. - live
Trace BooleanEnabled - local
Auth BooleanEnabled - Whether to enable local auth? Defaults to
true
. - location String
- Specifies the supported Azure location where the SignalR service exists. Changing this forces a new resource to be created.
- messaging
Logs BooleanEnabled - Specifies if Messaging Logs are enabled or not. Defaults to
false
. - name String
- The name of the SignalR service. Changing this forces a new resource to be created.
- public
Network BooleanAccess Enabled Whether to enable public network access? Defaults to
true
.Note:
public_network_access_enabled
cannot be set tofalse
inFree
sku tier.- serverless
Connection NumberTimeout In Seconds - Specifies the client connection timeout. Defaults to
30
. - service
Mode String - Specifies the service mode. Possible values are
Classic
,Default
andServerless
. Defaults toDefault
. - Map<String>
- A mapping of tags to assign to the resource.
- tls
Client BooleanCert Enabled Whether to request client certificate during TLS handshake? Defaults to
false
.Note:
tls_client_cert_enabled
cannot be set totrue
inFree
sku tier.- upstream
Endpoints List<Property Map> - An
upstream_endpoint
block as documented below. Using this block requires the SignalR service to be Serverless. When creating multiple blocks they will be processed in the order they are defined in.
Outputs
All input properties are implicitly available as output properties. Additionally, the Service resource produces the following output properties:
- Hostname string
- The FQDN of the SignalR service.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Address string - The publicly accessible IP of the SignalR service.
- Primary
Access stringKey - The primary access key for the SignalR service.
- Primary
Connection stringString - The primary connection string for the SignalR service.
- Public
Port int - The publicly accessible port of the SignalR service which is designed for browser/client use.
- Secondary
Access stringKey - The secondary access key for the SignalR service.
- Secondary
Connection stringString - The secondary connection string for the SignalR service.
- Server
Port int - The publicly accessible port of the SignalR service which is designed for customer server side use.
- Hostname string
- The FQDN of the SignalR service.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Address string - The publicly accessible IP of the SignalR service.
- Primary
Access stringKey - The primary access key for the SignalR service.
- Primary
Connection stringString - The primary connection string for the SignalR service.
- Public
Port int - The publicly accessible port of the SignalR service which is designed for browser/client use.
- Secondary
Access stringKey - The secondary access key for the SignalR service.
- Secondary
Connection stringString - The secondary connection string for the SignalR service.
- Server
Port int - The publicly accessible port of the SignalR service which is designed for customer server side use.
- hostname String
- The FQDN of the SignalR service.
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Address String - The publicly accessible IP of the SignalR service.
- primary
Access StringKey - The primary access key for the SignalR service.
- primary
Connection StringString - The primary connection string for the SignalR service.
- public
Port Integer - The publicly accessible port of the SignalR service which is designed for browser/client use.
- secondary
Access StringKey - The secondary access key for the SignalR service.
- secondary
Connection StringString - The secondary connection string for the SignalR service.
- server
Port Integer - The publicly accessible port of the SignalR service which is designed for customer server side use.
- hostname string
- The FQDN of the SignalR service.
- id string
- The provider-assigned unique ID for this managed resource.
- ip
Address string - The publicly accessible IP of the SignalR service.
- primary
Access stringKey - The primary access key for the SignalR service.
- primary
Connection stringString - The primary connection string for the SignalR service.
- public
Port number - The publicly accessible port of the SignalR service which is designed for browser/client use.
- secondary
Access stringKey - The secondary access key for the SignalR service.
- secondary
Connection stringString - The secondary connection string for the SignalR service.
- server
Port number - The publicly accessible port of the SignalR service which is designed for customer server side use.
- hostname str
- The FQDN of the SignalR service.
- id str
- The provider-assigned unique ID for this managed resource.
- ip_
address str - The publicly accessible IP of the SignalR service.
- primary_
access_ strkey - The primary access key for the SignalR service.
- primary_
connection_ strstring - The primary connection string for the SignalR service.
- public_
port int - The publicly accessible port of the SignalR service which is designed for browser/client use.
- secondary_
access_ strkey - The secondary access key for the SignalR service.
- secondary_
connection_ strstring - The secondary connection string for the SignalR service.
- server_
port int - The publicly accessible port of the SignalR service which is designed for customer server side use.
- hostname String
- The FQDN of the SignalR service.
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Address String - The publicly accessible IP of the SignalR service.
- primary
Access StringKey - The primary access key for the SignalR service.
- primary
Connection StringString - The primary connection string for the SignalR service.
- public
Port Number - The publicly accessible port of the SignalR service which is designed for browser/client use.
- secondary
Access StringKey - The secondary access key for the SignalR service.
- secondary
Connection StringString - The secondary connection string for the SignalR service.
- server
Port Number - The publicly accessible port of the SignalR service which is designed for customer server side use.
Look up Existing Service Resource
Get an existing Service 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?: ServiceState, opts?: CustomResourceOptions): Service
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aad_auth_enabled: Optional[bool] = None,
connectivity_logs_enabled: Optional[bool] = None,
cors: Optional[Sequence[ServiceCorArgs]] = None,
hostname: Optional[str] = None,
http_request_logs_enabled: Optional[bool] = None,
identity: Optional[ServiceIdentityArgs] = None,
ip_address: Optional[str] = None,
live_trace: Optional[ServiceLiveTraceArgs] = None,
live_trace_enabled: Optional[bool] = None,
local_auth_enabled: Optional[bool] = None,
location: Optional[str] = None,
messaging_logs_enabled: Optional[bool] = None,
name: Optional[str] = None,
primary_access_key: Optional[str] = None,
primary_connection_string: Optional[str] = None,
public_network_access_enabled: Optional[bool] = None,
public_port: Optional[int] = None,
resource_group_name: Optional[str] = None,
secondary_access_key: Optional[str] = None,
secondary_connection_string: Optional[str] = None,
server_port: Optional[int] = None,
serverless_connection_timeout_in_seconds: Optional[int] = None,
service_mode: Optional[str] = None,
sku: Optional[ServiceSkuArgs] = None,
tags: Optional[Mapping[str, str]] = None,
tls_client_cert_enabled: Optional[bool] = None,
upstream_endpoints: Optional[Sequence[ServiceUpstreamEndpointArgs]] = None) -> Service
func GetService(ctx *Context, name string, id IDInput, state *ServiceState, opts ...ResourceOption) (*Service, error)
public static Service Get(string name, Input<string> id, ServiceState? state, CustomResourceOptions? opts = null)
public static Service get(String name, Output<String> id, ServiceState 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.
- Aad
Auth boolEnabled - Whether to enable AAD auth? Defaults to
true
. - Connectivity
Logs boolEnabled - Specifies if Connectivity Logs are enabled or not. Defaults to
false
. - Cors
List<Service
Cor> - A
cors
block as documented below. - Hostname string
- The FQDN of the SignalR service.
- Http
Request boolLogs Enabled - Specifies if Http Request Logs are enabled or not. Defaults to
false
. - Identity
Service
Identity - An
identity
block as defined below. - Ip
Address string - The publicly accessible IP of the SignalR service.
- Live
Trace ServiceLive Trace - A
live_trace
block as defined below. - Live
Trace boolEnabled - Local
Auth boolEnabled - Whether to enable local auth? Defaults to
true
. - Location string
- Specifies the supported Azure location where the SignalR service exists. Changing this forces a new resource to be created.
- Messaging
Logs boolEnabled - Specifies if Messaging Logs are enabled or not. Defaults to
false
. - Name string
- The name of the SignalR service. Changing this forces a new resource to be created.
- Primary
Access stringKey - The primary access key for the SignalR service.
- Primary
Connection stringString - The primary connection string for the SignalR service.
- Public
Network boolAccess Enabled Whether to enable public network access? Defaults to
true
.Note:
public_network_access_enabled
cannot be set tofalse
inFree
sku tier.- Public
Port int - The publicly accessible port of the SignalR service which is designed for browser/client use.
- Resource
Group stringName - The name of the resource group in which to create the SignalR service. Changing this forces a new resource to be created.
- Secondary
Access stringKey - The secondary access key for the SignalR service.
- Secondary
Connection stringString - The secondary connection string for the SignalR service.
- Server
Port int - The publicly accessible port of the SignalR service which is designed for customer server side use.
- Serverless
Connection intTimeout In Seconds - Specifies the client connection timeout. Defaults to
30
. - Service
Mode string - Specifies the service mode. Possible values are
Classic
,Default
andServerless
. Defaults toDefault
. - Sku
Service
Sku - A
sku
block as documented below. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Tls
Client boolCert Enabled Whether to request client certificate during TLS handshake? Defaults to
false
.Note:
tls_client_cert_enabled
cannot be set totrue
inFree
sku tier.- Upstream
Endpoints List<ServiceUpstream Endpoint> - An
upstream_endpoint
block as documented below. Using this block requires the SignalR service to be Serverless. When creating multiple blocks they will be processed in the order they are defined in.
- Aad
Auth boolEnabled - Whether to enable AAD auth? Defaults to
true
. - Connectivity
Logs boolEnabled - Specifies if Connectivity Logs are enabled or not. Defaults to
false
. - Cors
[]Service
Cor Args - A
cors
block as documented below. - Hostname string
- The FQDN of the SignalR service.
- Http
Request boolLogs Enabled - Specifies if Http Request Logs are enabled or not. Defaults to
false
. - Identity
Service
Identity Args - An
identity
block as defined below. - Ip
Address string - The publicly accessible IP of the SignalR service.
- Live
Trace ServiceLive Trace Args - A
live_trace
block as defined below. - Live
Trace boolEnabled - Local
Auth boolEnabled - Whether to enable local auth? Defaults to
true
. - Location string
- Specifies the supported Azure location where the SignalR service exists. Changing this forces a new resource to be created.
- Messaging
Logs boolEnabled - Specifies if Messaging Logs are enabled or not. Defaults to
false
. - Name string
- The name of the SignalR service. Changing this forces a new resource to be created.
- Primary
Access stringKey - The primary access key for the SignalR service.
- Primary
Connection stringString - The primary connection string for the SignalR service.
- Public
Network boolAccess Enabled Whether to enable public network access? Defaults to
true
.Note:
public_network_access_enabled
cannot be set tofalse
inFree
sku tier.- Public
Port int - The publicly accessible port of the SignalR service which is designed for browser/client use.
- Resource
Group stringName - The name of the resource group in which to create the SignalR service. Changing this forces a new resource to be created.
- Secondary
Access stringKey - The secondary access key for the SignalR service.
- Secondary
Connection stringString - The secondary connection string for the SignalR service.
- Server
Port int - The publicly accessible port of the SignalR service which is designed for customer server side use.
- Serverless
Connection intTimeout In Seconds - Specifies the client connection timeout. Defaults to
30
. - Service
Mode string - Specifies the service mode. Possible values are
Classic
,Default
andServerless
. Defaults toDefault
. - Sku
Service
Sku Args - A
sku
block as documented below. - map[string]string
- A mapping of tags to assign to the resource.
- Tls
Client boolCert Enabled Whether to request client certificate during TLS handshake? Defaults to
false
.Note:
tls_client_cert_enabled
cannot be set totrue
inFree
sku tier.- Upstream
Endpoints []ServiceUpstream Endpoint Args - An
upstream_endpoint
block as documented below. Using this block requires the SignalR service to be Serverless. When creating multiple blocks they will be processed in the order they are defined in.
- aad
Auth BooleanEnabled - Whether to enable AAD auth? Defaults to
true
. - connectivity
Logs BooleanEnabled - Specifies if Connectivity Logs are enabled or not. Defaults to
false
. - cors
List<Service
Cor> - A
cors
block as documented below. - hostname String
- The FQDN of the SignalR service.
- http
Request BooleanLogs Enabled - Specifies if Http Request Logs are enabled or not. Defaults to
false
. - identity
Service
Identity - An
identity
block as defined below. - ip
Address String - The publicly accessible IP of the SignalR service.
- live
Trace ServiceLive Trace - A
live_trace
block as defined below. - live
Trace BooleanEnabled - local
Auth BooleanEnabled - Whether to enable local auth? Defaults to
true
. - location String
- Specifies the supported Azure location where the SignalR service exists. Changing this forces a new resource to be created.
- messaging
Logs BooleanEnabled - Specifies if Messaging Logs are enabled or not. Defaults to
false
. - name String
- The name of the SignalR service. Changing this forces a new resource to be created.
- primary
Access StringKey - The primary access key for the SignalR service.
- primary
Connection StringString - The primary connection string for the SignalR service.
- public
Network BooleanAccess Enabled Whether to enable public network access? Defaults to
true
.Note:
public_network_access_enabled
cannot be set tofalse
inFree
sku tier.- public
Port Integer - The publicly accessible port of the SignalR service which is designed for browser/client use.
- resource
Group StringName - The name of the resource group in which to create the SignalR service. Changing this forces a new resource to be created.
- secondary
Access StringKey - The secondary access key for the SignalR service.
- secondary
Connection StringString - The secondary connection string for the SignalR service.
- server
Port Integer - The publicly accessible port of the SignalR service which is designed for customer server side use.
- serverless
Connection IntegerTimeout In Seconds - Specifies the client connection timeout. Defaults to
30
. - service
Mode String - Specifies the service mode. Possible values are
Classic
,Default
andServerless
. Defaults toDefault
. - sku
Service
Sku - A
sku
block as documented below. - Map<String,String>
- A mapping of tags to assign to the resource.
- tls
Client BooleanCert Enabled Whether to request client certificate during TLS handshake? Defaults to
false
.Note:
tls_client_cert_enabled
cannot be set totrue
inFree
sku tier.- upstream
Endpoints List<ServiceUpstream Endpoint> - An
upstream_endpoint
block as documented below. Using this block requires the SignalR service to be Serverless. When creating multiple blocks they will be processed in the order they are defined in.
- aad
Auth booleanEnabled - Whether to enable AAD auth? Defaults to
true
. - connectivity
Logs booleanEnabled - Specifies if Connectivity Logs are enabled or not. Defaults to
false
. - cors
Service
Cor[] - A
cors
block as documented below. - hostname string
- The FQDN of the SignalR service.
- http
Request booleanLogs Enabled - Specifies if Http Request Logs are enabled or not. Defaults to
false
. - identity
Service
Identity - An
identity
block as defined below. - ip
Address string - The publicly accessible IP of the SignalR service.
- live
Trace ServiceLive Trace - A
live_trace
block as defined below. - live
Trace booleanEnabled - local
Auth booleanEnabled - Whether to enable local auth? Defaults to
true
. - location string
- Specifies the supported Azure location where the SignalR service exists. Changing this forces a new resource to be created.
- messaging
Logs booleanEnabled - Specifies if Messaging Logs are enabled or not. Defaults to
false
. - name string
- The name of the SignalR service. Changing this forces a new resource to be created.
- primary
Access stringKey - The primary access key for the SignalR service.
- primary
Connection stringString - The primary connection string for the SignalR service.
- public
Network booleanAccess Enabled Whether to enable public network access? Defaults to
true
.Note:
public_network_access_enabled
cannot be set tofalse
inFree
sku tier.- public
Port number - The publicly accessible port of the SignalR service which is designed for browser/client use.
- resource
Group stringName - The name of the resource group in which to create the SignalR service. Changing this forces a new resource to be created.
- secondary
Access stringKey - The secondary access key for the SignalR service.
- secondary
Connection stringString - The secondary connection string for the SignalR service.
- server
Port number - The publicly accessible port of the SignalR service which is designed for customer server side use.
- serverless
Connection numberTimeout In Seconds - Specifies the client connection timeout. Defaults to
30
. - service
Mode string - Specifies the service mode. Possible values are
Classic
,Default
andServerless
. Defaults toDefault
. - sku
Service
Sku - A
sku
block as documented below. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- tls
Client booleanCert Enabled Whether to request client certificate during TLS handshake? Defaults to
false
.Note:
tls_client_cert_enabled
cannot be set totrue
inFree
sku tier.- upstream
Endpoints ServiceUpstream Endpoint[] - An
upstream_endpoint
block as documented below. Using this block requires the SignalR service to be Serverless. When creating multiple blocks they will be processed in the order they are defined in.
- aad_
auth_ boolenabled - Whether to enable AAD auth? Defaults to
true
. - connectivity_
logs_ boolenabled - Specifies if Connectivity Logs are enabled or not. Defaults to
false
. - cors
Sequence[Service
Cor Args] - A
cors
block as documented below. - hostname str
- The FQDN of the SignalR service.
- http_
request_ boollogs_ enabled - Specifies if Http Request Logs are enabled or not. Defaults to
false
. - identity
Service
Identity Args - An
identity
block as defined below. - ip_
address str - The publicly accessible IP of the SignalR service.
- live_
trace ServiceLive Trace Args - A
live_trace
block as defined below. - live_
trace_ boolenabled - local_
auth_ boolenabled - Whether to enable local auth? Defaults to
true
. - location str
- Specifies the supported Azure location where the SignalR service exists. Changing this forces a new resource to be created.
- messaging_
logs_ boolenabled - Specifies if Messaging Logs are enabled or not. Defaults to
false
. - name str
- The name of the SignalR service. Changing this forces a new resource to be created.
- primary_
access_ strkey - The primary access key for the SignalR service.
- primary_
connection_ strstring - The primary connection string for the SignalR service.
- public_
network_ boolaccess_ enabled Whether to enable public network access? Defaults to
true
.Note:
public_network_access_enabled
cannot be set tofalse
inFree
sku tier.- public_
port int - The publicly accessible port of the SignalR service which is designed for browser/client use.
- resource_
group_ strname - The name of the resource group in which to create the SignalR service. Changing this forces a new resource to be created.
- secondary_
access_ strkey - The secondary access key for the SignalR service.
- secondary_
connection_ strstring - The secondary connection string for the SignalR service.
- server_
port int - The publicly accessible port of the SignalR service which is designed for customer server side use.
- serverless_
connection_ inttimeout_ in_ seconds - Specifies the client connection timeout. Defaults to
30
. - service_
mode str - Specifies the service mode. Possible values are
Classic
,Default
andServerless
. Defaults toDefault
. - sku
Service
Sku Args - A
sku
block as documented below. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- tls_
client_ boolcert_ enabled Whether to request client certificate during TLS handshake? Defaults to
false
.Note:
tls_client_cert_enabled
cannot be set totrue
inFree
sku tier.- upstream_
endpoints Sequence[ServiceUpstream Endpoint Args] - An
upstream_endpoint
block as documented below. Using this block requires the SignalR service to be Serverless. When creating multiple blocks they will be processed in the order they are defined in.
- aad
Auth BooleanEnabled - Whether to enable AAD auth? Defaults to
true
. - connectivity
Logs BooleanEnabled - Specifies if Connectivity Logs are enabled or not. Defaults to
false
. - cors List<Property Map>
- A
cors
block as documented below. - hostname String
- The FQDN of the SignalR service.
- http
Request BooleanLogs Enabled - Specifies if Http Request Logs are enabled or not. Defaults to
false
. - identity Property Map
- An
identity
block as defined below. - ip
Address String - The publicly accessible IP of the SignalR service.
- live
Trace Property Map - A
live_trace
block as defined below. - live
Trace BooleanEnabled - local
Auth BooleanEnabled - Whether to enable local auth? Defaults to
true
. - location String
- Specifies the supported Azure location where the SignalR service exists. Changing this forces a new resource to be created.
- messaging
Logs BooleanEnabled - Specifies if Messaging Logs are enabled or not. Defaults to
false
. - name String
- The name of the SignalR service. Changing this forces a new resource to be created.
- primary
Access StringKey - The primary access key for the SignalR service.
- primary
Connection StringString - The primary connection string for the SignalR service.
- public
Network BooleanAccess Enabled Whether to enable public network access? Defaults to
true
.Note:
public_network_access_enabled
cannot be set tofalse
inFree
sku tier.- public
Port Number - The publicly accessible port of the SignalR service which is designed for browser/client use.
- resource
Group StringName - The name of the resource group in which to create the SignalR service. Changing this forces a new resource to be created.
- secondary
Access StringKey - The secondary access key for the SignalR service.
- secondary
Connection StringString - The secondary connection string for the SignalR service.
- server
Port Number - The publicly accessible port of the SignalR service which is designed for customer server side use.
- serverless
Connection NumberTimeout In Seconds - Specifies the client connection timeout. Defaults to
30
. - service
Mode String - Specifies the service mode. Possible values are
Classic
,Default
andServerless
. Defaults toDefault
. - sku Property Map
- A
sku
block as documented below. - Map<String>
- A mapping of tags to assign to the resource.
- tls
Client BooleanCert Enabled Whether to request client certificate during TLS handshake? Defaults to
false
.Note:
tls_client_cert_enabled
cannot be set totrue
inFree
sku tier.- upstream
Endpoints List<Property Map> - An
upstream_endpoint
block as documented below. Using this block requires the SignalR service to be Serverless. When creating multiple blocks they will be processed in the order they are defined in.
Supporting Types
ServiceCor, ServiceCorArgs
- Allowed
Origins List<string> - A list of origins which should be able to make cross-origin calls.
*
can be used to allow all calls.
- Allowed
Origins []string - A list of origins which should be able to make cross-origin calls.
*
can be used to allow all calls.
- allowed
Origins List<String> - A list of origins which should be able to make cross-origin calls.
*
can be used to allow all calls.
- allowed
Origins string[] - A list of origins which should be able to make cross-origin calls.
*
can be used to allow all calls.
- allowed_
origins Sequence[str] - A list of origins which should be able to make cross-origin calls.
*
can be used to allow all calls.
- allowed
Origins List<String> - A list of origins which should be able to make cross-origin calls.
*
can be used to allow all calls.
ServiceIdentity, ServiceIdentityArgs
- Type string
- Specifies the type of Managed Service Identity that should be configured on this signalR. Possible values are
SystemAssigned
,UserAssigned
. - Identity
Ids List<string> Specifies a list of User Assigned Managed Identity IDs to be assigned to this signalR.
NOTE: This is required when
type
is set toUserAssigned
- Principal
Id string - Tenant
Id string
- Type string
- Specifies the type of Managed Service Identity that should be configured on this signalR. Possible values are
SystemAssigned
,UserAssigned
. - Identity
Ids []string Specifies a list of User Assigned Managed Identity IDs to be assigned to this signalR.
NOTE: This is required when
type
is set toUserAssigned
- Principal
Id string - Tenant
Id string
- type String
- Specifies the type of Managed Service Identity that should be configured on this signalR. Possible values are
SystemAssigned
,UserAssigned
. - identity
Ids List<String> Specifies a list of User Assigned Managed Identity IDs to be assigned to this signalR.
NOTE: This is required when
type
is set toUserAssigned
- principal
Id String - tenant
Id String
- type string
- Specifies the type of Managed Service Identity that should be configured on this signalR. Possible values are
SystemAssigned
,UserAssigned
. - identity
Ids string[] Specifies a list of User Assigned Managed Identity IDs to be assigned to this signalR.
NOTE: This is required when
type
is set toUserAssigned
- principal
Id string - tenant
Id string
- type str
- Specifies the type of Managed Service Identity that should be configured on this signalR. Possible values are
SystemAssigned
,UserAssigned
. - identity_
ids Sequence[str] Specifies a list of User Assigned Managed Identity IDs to be assigned to this signalR.
NOTE: This is required when
type
is set toUserAssigned
- principal_
id str - tenant_
id str
- type String
- Specifies the type of Managed Service Identity that should be configured on this signalR. Possible values are
SystemAssigned
,UserAssigned
. - identity
Ids List<String> Specifies a list of User Assigned Managed Identity IDs to be assigned to this signalR.
NOTE: This is required when
type
is set toUserAssigned
- principal
Id String - tenant
Id String
ServiceLiveTrace, ServiceLiveTraceArgs
- Connectivity
Logs boolEnabled - Whether the log category
ConnectivityLogs
is enabled? Defaults totrue
- Enabled bool
- Whether the live trace is enabled? Defaults to
true
. - Http
Request boolLogs Enabled - Whether the log category
HttpRequestLogs
is enabled? Defaults totrue
- Messaging
Logs boolEnabled - Whether the log category
MessagingLogs
is enabled? Defaults totrue
- Connectivity
Logs boolEnabled - Whether the log category
ConnectivityLogs
is enabled? Defaults totrue
- Enabled bool
- Whether the live trace is enabled? Defaults to
true
. - Http
Request boolLogs Enabled - Whether the log category
HttpRequestLogs
is enabled? Defaults totrue
- Messaging
Logs boolEnabled - Whether the log category
MessagingLogs
is enabled? Defaults totrue
- connectivity
Logs BooleanEnabled - Whether the log category
ConnectivityLogs
is enabled? Defaults totrue
- enabled Boolean
- Whether the live trace is enabled? Defaults to
true
. - http
Request BooleanLogs Enabled - Whether the log category
HttpRequestLogs
is enabled? Defaults totrue
- messaging
Logs BooleanEnabled - Whether the log category
MessagingLogs
is enabled? Defaults totrue
- connectivity
Logs booleanEnabled - Whether the log category
ConnectivityLogs
is enabled? Defaults totrue
- enabled boolean
- Whether the live trace is enabled? Defaults to
true
. - http
Request booleanLogs Enabled - Whether the log category
HttpRequestLogs
is enabled? Defaults totrue
- messaging
Logs booleanEnabled - Whether the log category
MessagingLogs
is enabled? Defaults totrue
- connectivity_
logs_ boolenabled - Whether the log category
ConnectivityLogs
is enabled? Defaults totrue
- enabled bool
- Whether the live trace is enabled? Defaults to
true
. - http_
request_ boollogs_ enabled - Whether the log category
HttpRequestLogs
is enabled? Defaults totrue
- messaging_
logs_ boolenabled - Whether the log category
MessagingLogs
is enabled? Defaults totrue
- connectivity
Logs BooleanEnabled - Whether the log category
ConnectivityLogs
is enabled? Defaults totrue
- enabled Boolean
- Whether the live trace is enabled? Defaults to
true
. - http
Request BooleanLogs Enabled - Whether the log category
HttpRequestLogs
is enabled? Defaults totrue
- messaging
Logs BooleanEnabled - Whether the log category
MessagingLogs
is enabled? Defaults totrue
ServiceSku, ServiceSkuArgs
- Capacity int
Specifies the number of units associated with this SignalR service. Valid values are
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,200
,300
,400
,500
,600
,700
,800
,900
and1000
.NOTE: The valid capacity range for sku
Free_F1
is1
, for skuPremium_P2
is from100
to1000
, and from1
to100
for skuStandard_S1
andPremium_P1
.- Name string
- Specifies which tier to use. Valid values are
Free_F1
,Standard_S1
,Premium_P1
andPremium_P2
.
- Capacity int
Specifies the number of units associated with this SignalR service. Valid values are
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,200
,300
,400
,500
,600
,700
,800
,900
and1000
.NOTE: The valid capacity range for sku
Free_F1
is1
, for skuPremium_P2
is from100
to1000
, and from1
to100
for skuStandard_S1
andPremium_P1
.- Name string
- Specifies which tier to use. Valid values are
Free_F1
,Standard_S1
,Premium_P1
andPremium_P2
.
- capacity Integer
Specifies the number of units associated with this SignalR service. Valid values are
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,200
,300
,400
,500
,600
,700
,800
,900
and1000
.NOTE: The valid capacity range for sku
Free_F1
is1
, for skuPremium_P2
is from100
to1000
, and from1
to100
for skuStandard_S1
andPremium_P1
.- name String
- Specifies which tier to use. Valid values are
Free_F1
,Standard_S1
,Premium_P1
andPremium_P2
.
- capacity number
Specifies the number of units associated with this SignalR service. Valid values are
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,200
,300
,400
,500
,600
,700
,800
,900
and1000
.NOTE: The valid capacity range for sku
Free_F1
is1
, for skuPremium_P2
is from100
to1000
, and from1
to100
for skuStandard_S1
andPremium_P1
.- name string
- Specifies which tier to use. Valid values are
Free_F1
,Standard_S1
,Premium_P1
andPremium_P2
.
- capacity int
Specifies the number of units associated with this SignalR service. Valid values are
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,200
,300
,400
,500
,600
,700
,800
,900
and1000
.NOTE: The valid capacity range for sku
Free_F1
is1
, for skuPremium_P2
is from100
to1000
, and from1
to100
for skuStandard_S1
andPremium_P1
.- name str
- Specifies which tier to use. Valid values are
Free_F1
,Standard_S1
,Premium_P1
andPremium_P2
.
- capacity Number
Specifies the number of units associated with this SignalR service. Valid values are
1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,200
,300
,400
,500
,600
,700
,800
,900
and1000
.NOTE: The valid capacity range for sku
Free_F1
is1
, for skuPremium_P2
is from100
to1000
, and from1
to100
for skuStandard_S1
andPremium_P1
.- name String
- Specifies which tier to use. Valid values are
Free_F1
,Standard_S1
,Premium_P1
andPremium_P2
.
ServiceUpstreamEndpoint, ServiceUpstreamEndpointArgs
- Category
Patterns List<string> - The categories to match on, or
*
for all. - Event
Patterns List<string> - The events to match on, or
*
for all. - Hub
Patterns List<string> - The hubs to match on, or
*
for all. - Url
Template string - The upstream URL Template. This can be a url or a template such as
http://host.com/{hub}/api/{category}/{event}
. - User
Assigned stringIdentity Id - Specifies the Managed Identity IDs to be assigned to this signalR upstream setting by using resource uuid as both system assigned and user assigned identity is supported.
- Category
Patterns []string - The categories to match on, or
*
for all. - Event
Patterns []string - The events to match on, or
*
for all. - Hub
Patterns []string - The hubs to match on, or
*
for all. - Url
Template string - The upstream URL Template. This can be a url or a template such as
http://host.com/{hub}/api/{category}/{event}
. - User
Assigned stringIdentity Id - Specifies the Managed Identity IDs to be assigned to this signalR upstream setting by using resource uuid as both system assigned and user assigned identity is supported.
- category
Patterns List<String> - The categories to match on, or
*
for all. - event
Patterns List<String> - The events to match on, or
*
for all. - hub
Patterns List<String> - The hubs to match on, or
*
for all. - url
Template String - The upstream URL Template. This can be a url or a template such as
http://host.com/{hub}/api/{category}/{event}
. - user
Assigned StringIdentity Id - Specifies the Managed Identity IDs to be assigned to this signalR upstream setting by using resource uuid as both system assigned and user assigned identity is supported.
- category
Patterns string[] - The categories to match on, or
*
for all. - event
Patterns string[] - The events to match on, or
*
for all. - hub
Patterns string[] - The hubs to match on, or
*
for all. - url
Template string - The upstream URL Template. This can be a url or a template such as
http://host.com/{hub}/api/{category}/{event}
. - user
Assigned stringIdentity Id - Specifies the Managed Identity IDs to be assigned to this signalR upstream setting by using resource uuid as both system assigned and user assigned identity is supported.
- category_
patterns Sequence[str] - The categories to match on, or
*
for all. - event_
patterns Sequence[str] - The events to match on, or
*
for all. - hub_
patterns Sequence[str] - The hubs to match on, or
*
for all. - url_
template str - The upstream URL Template. This can be a url or a template such as
http://host.com/{hub}/api/{category}/{event}
. - user_
assigned_ stridentity_ id - Specifies the Managed Identity IDs to be assigned to this signalR upstream setting by using resource uuid as both system assigned and user assigned identity is supported.
- category
Patterns List<String> - The categories to match on, or
*
for all. - event
Patterns List<String> - The events to match on, or
*
for all. - hub
Patterns List<String> - The hubs to match on, or
*
for all. - url
Template String - The upstream URL Template. This can be a url or a template such as
http://host.com/{hub}/api/{category}/{event}
. - user
Assigned StringIdentity Id - Specifies the Managed Identity IDs to be assigned to this signalR upstream setting by using resource uuid as both system assigned and user assigned identity is supported.
Import
SignalR services can be imported using the resource id
, e.g.
$ pulumi import azure:signalr/service:Service example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/terraform-signalr/providers/Microsoft.SignalRService/signalR/tfex-signalr
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.