1. Packages
  2. Azure Classic
  3. API Docs
  4. signalr
  5. ServiceCustomCertificate

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.signalr.ServiceCustomCertificate

Explore with Pulumi AI

Manages an Azure SignalR Custom Certificate.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
import * as std from "@pulumi/std";

const current = azure.core.getClientConfig({});
const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleService = new azure.signalr.Service("example", {
    name: "example-signalr",
    location: testAzurermResourceGroup.location,
    resourceGroupName: testAzurermResourceGroup.name,
    sku: {
        name: "Premium_P1",
        capacity: 1,
    },
    identity: {
        type: "SystemAssigned",
    },
});
const exampleKeyVault = new azure.keyvault.KeyVault("example", {
    name: "example-keyvault",
    location: example.location,
    resourceGroupName: example.name,
    tenantId: current.then(current => current.tenantId),
    skuName: "premium",
    accessPolicies: [
        {
            tenantId: current.then(current => current.tenantId),
            objectId: current.then(current => current.objectId),
            certificatePermissions: [
                "Create",
                "Get",
                "List",
            ],
            secretPermissions: [
                "Get",
                "List",
            ],
        },
        {
            tenantId: current.then(current => current.tenantId),
            objectId: testAzurermSignalrService.identity[0].principalId,
            certificatePermissions: [
                "Create",
                "Get",
                "List",
            ],
            secretPermissions: [
                "Get",
                "List",
            ],
        },
    ],
});
const exampleCertificate = new azure.keyvault.Certificate("example", {
    name: "imported-cert",
    keyVaultId: exampleKeyVault.id,
    certificate: {
        contents: std.filebase64({
            input: "certificate-to-import.pfx",
        }).then(invoke => invoke.result),
        password: "",
    },
});
const test = new azure.signalr.ServiceCustomCertificate("test", {
    name: "example-cert",
    signalrServiceId: exampleService.id,
    customCertificateId: exampleCertificate.id,
}, {
    dependsOn: [exampleAzurermKeyVaultAccessPolicy],
});
Copy
import pulumi
import pulumi_azure as azure
import pulumi_std as std

current = azure.core.get_client_config()
example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_service = azure.signalr.Service("example",
    name="example-signalr",
    location=test_azurerm_resource_group["location"],
    resource_group_name=test_azurerm_resource_group["name"],
    sku={
        "name": "Premium_P1",
        "capacity": 1,
    },
    identity={
        "type": "SystemAssigned",
    })
example_key_vault = azure.keyvault.KeyVault("example",
    name="example-keyvault",
    location=example.location,
    resource_group_name=example.name,
    tenant_id=current.tenant_id,
    sku_name="premium",
    access_policies=[
        {
            "tenant_id": current.tenant_id,
            "object_id": current.object_id,
            "certificate_permissions": [
                "Create",
                "Get",
                "List",
            ],
            "secret_permissions": [
                "Get",
                "List",
            ],
        },
        {
            "tenant_id": current.tenant_id,
            "object_id": test_azurerm_signalr_service["identity"][0]["principalId"],
            "certificate_permissions": [
                "Create",
                "Get",
                "List",
            ],
            "secret_permissions": [
                "Get",
                "List",
            ],
        },
    ])
example_certificate = azure.keyvault.Certificate("example",
    name="imported-cert",
    key_vault_id=example_key_vault.id,
    certificate={
        "contents": std.filebase64(input="certificate-to-import.pfx").result,
        "password": "",
    })
test = azure.signalr.ServiceCustomCertificate("test",
    name="example-cert",
    signalr_service_id=example_service.id,
    custom_certificate_id=example_certificate.id,
    opts = pulumi.ResourceOptions(depends_on=[example_azurerm_key_vault_access_policy]))
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/keyvault"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/signalr"
	"github.com/pulumi/pulumi-std/sdk/go/std"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		current, err := core.GetClientConfig(ctx, map[string]interface{}{}, nil)
		if err != nil {
			return err
		}
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleService, err := signalr.NewService(ctx, "example", &signalr.ServiceArgs{
			Name:              pulumi.String("example-signalr"),
			Location:          pulumi.Any(testAzurermResourceGroup.Location),
			ResourceGroupName: pulumi.Any(testAzurermResourceGroup.Name),
			Sku: &signalr.ServiceSkuArgs{
				Name:     pulumi.String("Premium_P1"),
				Capacity: pulumi.Int(1),
			},
			Identity: &signalr.ServiceIdentityArgs{
				Type: pulumi.String("SystemAssigned"),
			},
		})
		if err != nil {
			return err
		}
		exampleKeyVault, err := keyvault.NewKeyVault(ctx, "example", &keyvault.KeyVaultArgs{
			Name:              pulumi.String("example-keyvault"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			TenantId:          pulumi.String(current.TenantId),
			SkuName:           pulumi.String("premium"),
			AccessPolicies: keyvault.KeyVaultAccessPolicyArray{
				&keyvault.KeyVaultAccessPolicyArgs{
					TenantId: pulumi.String(current.TenantId),
					ObjectId: pulumi.String(current.ObjectId),
					CertificatePermissions: pulumi.StringArray{
						pulumi.String("Create"),
						pulumi.String("Get"),
						pulumi.String("List"),
					},
					SecretPermissions: pulumi.StringArray{
						pulumi.String("Get"),
						pulumi.String("List"),
					},
				},
				&keyvault.KeyVaultAccessPolicyArgs{
					TenantId: pulumi.String(current.TenantId),
					ObjectId: pulumi.Any(testAzurermSignalrService.Identity[0].PrincipalId),
					CertificatePermissions: pulumi.StringArray{
						pulumi.String("Create"),
						pulumi.String("Get"),
						pulumi.String("List"),
					},
					SecretPermissions: pulumi.StringArray{
						pulumi.String("Get"),
						pulumi.String("List"),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		invokeFilebase64, err := std.Filebase64(ctx, &std.Filebase64Args{
			Input: "certificate-to-import.pfx",
		}, nil)
		if err != nil {
			return err
		}
		exampleCertificate, err := keyvault.NewCertificate(ctx, "example", &keyvault.CertificateArgs{
			Name:       pulumi.String("imported-cert"),
			KeyVaultId: exampleKeyVault.ID(),
			Certificate: &keyvault.CertificateCertificateArgs{
				Contents: pulumi.String(invokeFilebase64.Result),
				Password: pulumi.String(""),
			},
		})
		if err != nil {
			return err
		}
		_, err = signalr.NewServiceCustomCertificate(ctx, "test", &signalr.ServiceCustomCertificateArgs{
			Name:                pulumi.String("example-cert"),
			SignalrServiceId:    exampleService.ID(),
			CustomCertificateId: exampleCertificate.ID(),
		}, pulumi.DependsOn([]pulumi.Resource{
			exampleAzurermKeyVaultAccessPolicy,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
using Std = Pulumi.Std;

return await Deployment.RunAsync(() => 
{
    var current = Azure.Core.GetClientConfig.Invoke();

    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });

    var exampleService = new Azure.SignalR.Service("example", new()
    {
        Name = "example-signalr",
        Location = testAzurermResourceGroup.Location,
        ResourceGroupName = testAzurermResourceGroup.Name,
        Sku = new Azure.SignalR.Inputs.ServiceSkuArgs
        {
            Name = "Premium_P1",
            Capacity = 1,
        },
        Identity = new Azure.SignalR.Inputs.ServiceIdentityArgs
        {
            Type = "SystemAssigned",
        },
    });

    var exampleKeyVault = new Azure.KeyVault.KeyVault("example", new()
    {
        Name = "example-keyvault",
        Location = example.Location,
        ResourceGroupName = example.Name,
        TenantId = current.Apply(getClientConfigResult => getClientConfigResult.TenantId),
        SkuName = "premium",
        AccessPolicies = new[]
        {
            new Azure.KeyVault.Inputs.KeyVaultAccessPolicyArgs
            {
                TenantId = current.Apply(getClientConfigResult => getClientConfigResult.TenantId),
                ObjectId = current.Apply(getClientConfigResult => getClientConfigResult.ObjectId),
                CertificatePermissions = new[]
                {
                    "Create",
                    "Get",
                    "List",
                },
                SecretPermissions = new[]
                {
                    "Get",
                    "List",
                },
            },
            new Azure.KeyVault.Inputs.KeyVaultAccessPolicyArgs
            {
                TenantId = current.Apply(getClientConfigResult => getClientConfigResult.TenantId),
                ObjectId = testAzurermSignalrService.Identity[0].PrincipalId,
                CertificatePermissions = new[]
                {
                    "Create",
                    "Get",
                    "List",
                },
                SecretPermissions = new[]
                {
                    "Get",
                    "List",
                },
            },
        },
    });

    var exampleCertificate = new Azure.KeyVault.Certificate("example", new()
    {
        Name = "imported-cert",
        KeyVaultId = exampleKeyVault.Id,
        KeyVaultCertificate = new Azure.KeyVault.Inputs.CertificateCertificateArgs
        {
            Contents = Std.Filebase64.Invoke(new()
            {
                Input = "certificate-to-import.pfx",
            }).Apply(invoke => invoke.Result),
            Password = "",
        },
    });

    var test = new Azure.SignalR.ServiceCustomCertificate("test", new()
    {
        Name = "example-cert",
        SignalrServiceId = exampleService.Id,
        CustomCertificateId = exampleCertificate.Id,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            exampleAzurermKeyVaultAccessPolicy,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.CoreFunctions;
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.ServiceIdentityArgs;
import com.pulumi.azure.keyvault.KeyVault;
import com.pulumi.azure.keyvault.KeyVaultArgs;
import com.pulumi.azure.keyvault.inputs.KeyVaultAccessPolicyArgs;
import com.pulumi.azure.keyvault.Certificate;
import com.pulumi.azure.keyvault.CertificateArgs;
import com.pulumi.azure.keyvault.inputs.CertificateCertificateArgs;
import com.pulumi.azure.signalr.ServiceCustomCertificate;
import com.pulumi.azure.signalr.ServiceCustomCertificateArgs;
import com.pulumi.resources.CustomResourceOptions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var current = CoreFunctions.getClientConfig();

        var example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var exampleService = new Service("exampleService", ServiceArgs.builder()
            .name("example-signalr")
            .location(testAzurermResourceGroup.location())
            .resourceGroupName(testAzurermResourceGroup.name())
            .sku(ServiceSkuArgs.builder()
                .name("Premium_P1")
                .capacity(1)
                .build())
            .identity(ServiceIdentityArgs.builder()
                .type("SystemAssigned")
                .build())
            .build());

        var exampleKeyVault = new KeyVault("exampleKeyVault", KeyVaultArgs.builder()
            .name("example-keyvault")
            .location(example.location())
            .resourceGroupName(example.name())
            .tenantId(current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId()))
            .skuName("premium")
            .accessPolicies(            
                KeyVaultAccessPolicyArgs.builder()
                    .tenantId(current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId()))
                    .objectId(current.applyValue(getClientConfigResult -> getClientConfigResult.objectId()))
                    .certificatePermissions(                    
                        "Create",
                        "Get",
                        "List")
                    .secretPermissions(                    
                        "Get",
                        "List")
                    .build(),
                KeyVaultAccessPolicyArgs.builder()
                    .tenantId(current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId()))
                    .objectId(testAzurermSignalrService.identity()[0].principalId())
                    .certificatePermissions(                    
                        "Create",
                        "Get",
                        "List")
                    .secretPermissions(                    
                        "Get",
                        "List")
                    .build())
            .build());

        var exampleCertificate = new Certificate("exampleCertificate", CertificateArgs.builder()
            .name("imported-cert")
            .keyVaultId(exampleKeyVault.id())
            .certificate(CertificateCertificateArgs.builder()
                .contents(StdFunctions.filebase64(Filebase64Args.builder()
                    .input("certificate-to-import.pfx")
                    .build()).result())
                .password("")
                .build())
            .build());

        var test = new ServiceCustomCertificate("test", ServiceCustomCertificateArgs.builder()
            .name("example-cert")
            .signalrServiceId(exampleService.id())
            .customCertificateId(exampleCertificate.id())
            .build(), CustomResourceOptions.builder()
                .dependsOn(exampleAzurermKeyVaultAccessPolicy)
                .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleService:
    type: azure:signalr:Service
    name: example
    properties:
      name: example-signalr
      location: ${testAzurermResourceGroup.location}
      resourceGroupName: ${testAzurermResourceGroup.name}
      sku:
        name: Premium_P1
        capacity: 1
      identity:
        type: SystemAssigned
  exampleKeyVault:
    type: azure:keyvault:KeyVault
    name: example
    properties:
      name: example-keyvault
      location: ${example.location}
      resourceGroupName: ${example.name}
      tenantId: ${current.tenantId}
      skuName: premium
      accessPolicies:
        - tenantId: ${current.tenantId}
          objectId: ${current.objectId}
          certificatePermissions:
            - Create
            - Get
            - List
          secretPermissions:
            - Get
            - List
        - tenantId: ${current.tenantId}
          objectId: ${testAzurermSignalrService.identity[0].principalId}
          certificatePermissions:
            - Create
            - Get
            - List
          secretPermissions:
            - Get
            - List
  exampleCertificate:
    type: azure:keyvault:Certificate
    name: example
    properties:
      name: imported-cert
      keyVaultId: ${exampleKeyVault.id}
      certificate:
        contents:
          fn::invoke:
            function: std:filebase64
            arguments:
              input: certificate-to-import.pfx
            return: result
        password: ""
  test:
    type: azure:signalr:ServiceCustomCertificate
    properties:
      name: example-cert
      signalrServiceId: ${exampleService.id}
      customCertificateId: ${exampleCertificate.id}
    options:
      dependsOn:
        - ${exampleAzurermKeyVaultAccessPolicy}
variables:
  current:
    fn::invoke:
      function: azure:core:getClientConfig
      arguments: {}
Copy

Create ServiceCustomCertificate Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ServiceCustomCertificate(name: string, args: ServiceCustomCertificateArgs, opts?: CustomResourceOptions);
@overload
def ServiceCustomCertificate(resource_name: str,
                             args: ServiceCustomCertificateArgs,
                             opts: Optional[ResourceOptions] = None)

@overload
def ServiceCustomCertificate(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             custom_certificate_id: Optional[str] = None,
                             signalr_service_id: Optional[str] = None,
                             name: Optional[str] = None)
func NewServiceCustomCertificate(ctx *Context, name string, args ServiceCustomCertificateArgs, opts ...ResourceOption) (*ServiceCustomCertificate, error)
public ServiceCustomCertificate(string name, ServiceCustomCertificateArgs args, CustomResourceOptions? opts = null)
public ServiceCustomCertificate(String name, ServiceCustomCertificateArgs args)
public ServiceCustomCertificate(String name, ServiceCustomCertificateArgs args, CustomResourceOptions options)
type: azure:signalr:ServiceCustomCertificate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ServiceCustomCertificateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ServiceCustomCertificateArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ServiceCustomCertificateArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ServiceCustomCertificateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ServiceCustomCertificateArgs
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 serviceCustomCertificateResource = new Azure.SignalR.ServiceCustomCertificate("serviceCustomCertificateResource", new()
{
    CustomCertificateId = "string",
    SignalrServiceId = "string",
    Name = "string",
});
Copy
example, err := signalr.NewServiceCustomCertificate(ctx, "serviceCustomCertificateResource", &signalr.ServiceCustomCertificateArgs{
	CustomCertificateId: pulumi.String("string"),
	SignalrServiceId:    pulumi.String("string"),
	Name:                pulumi.String("string"),
})
Copy
var serviceCustomCertificateResource = new ServiceCustomCertificate("serviceCustomCertificateResource", ServiceCustomCertificateArgs.builder()
    .customCertificateId("string")
    .signalrServiceId("string")
    .name("string")
    .build());
Copy
service_custom_certificate_resource = azure.signalr.ServiceCustomCertificate("serviceCustomCertificateResource",
    custom_certificate_id="string",
    signalr_service_id="string",
    name="string")
Copy
const serviceCustomCertificateResource = new azure.signalr.ServiceCustomCertificate("serviceCustomCertificateResource", {
    customCertificateId: "string",
    signalrServiceId: "string",
    name: "string",
});
Copy
type: azure:signalr:ServiceCustomCertificate
properties:
    customCertificateId: string
    name: string
    signalrServiceId: string
Copy

ServiceCustomCertificate Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ServiceCustomCertificate resource accepts the following input properties:

CustomCertificateId
This property is required.
Changes to this property will trigger replacement.
string

The certificate id of the SignalR Custom Certificate service. Changing this forces a new resource to be created.

Note: Self assigned certificate is not supported and the provisioning status will fail.

SignalrServiceId
This property is required.
Changes to this property will trigger replacement.
string

The SignalR ID of the SignalR Custom Certificate. Changing this forces a new resource to be created.

Note: Custom Certificate is only available for SignalR Premium tier. Please enable managed identity in the corresponding SignalR Service and give the managed identity access to the key vault, the required permission is Get Certificate and Secret.

Name Changes to this property will trigger replacement. string
The name of the SignalR Custom Certificate. Changing this forces a new resource to be created.
CustomCertificateId
This property is required.
Changes to this property will trigger replacement.
string

The certificate id of the SignalR Custom Certificate service. Changing this forces a new resource to be created.

Note: Self assigned certificate is not supported and the provisioning status will fail.

SignalrServiceId
This property is required.
Changes to this property will trigger replacement.
string

The SignalR ID of the SignalR Custom Certificate. Changing this forces a new resource to be created.

Note: Custom Certificate is only available for SignalR Premium tier. Please enable managed identity in the corresponding SignalR Service and give the managed identity access to the key vault, the required permission is Get Certificate and Secret.

Name Changes to this property will trigger replacement. string
The name of the SignalR Custom Certificate. Changing this forces a new resource to be created.
customCertificateId
This property is required.
Changes to this property will trigger replacement.
String

The certificate id of the SignalR Custom Certificate service. Changing this forces a new resource to be created.

Note: Self assigned certificate is not supported and the provisioning status will fail.

signalrServiceId
This property is required.
Changes to this property will trigger replacement.
String

The SignalR ID of the SignalR Custom Certificate. Changing this forces a new resource to be created.

Note: Custom Certificate is only available for SignalR Premium tier. Please enable managed identity in the corresponding SignalR Service and give the managed identity access to the key vault, the required permission is Get Certificate and Secret.

name Changes to this property will trigger replacement. String
The name of the SignalR Custom Certificate. Changing this forces a new resource to be created.
customCertificateId
This property is required.
Changes to this property will trigger replacement.
string

The certificate id of the SignalR Custom Certificate service. Changing this forces a new resource to be created.

Note: Self assigned certificate is not supported and the provisioning status will fail.

signalrServiceId
This property is required.
Changes to this property will trigger replacement.
string

The SignalR ID of the SignalR Custom Certificate. Changing this forces a new resource to be created.

Note: Custom Certificate is only available for SignalR Premium tier. Please enable managed identity in the corresponding SignalR Service and give the managed identity access to the key vault, the required permission is Get Certificate and Secret.

name Changes to this property will trigger replacement. string
The name of the SignalR Custom Certificate. Changing this forces a new resource to be created.
custom_certificate_id
This property is required.
Changes to this property will trigger replacement.
str

The certificate id of the SignalR Custom Certificate service. Changing this forces a new resource to be created.

Note: Self assigned certificate is not supported and the provisioning status will fail.

signalr_service_id
This property is required.
Changes to this property will trigger replacement.
str

The SignalR ID of the SignalR Custom Certificate. Changing this forces a new resource to be created.

Note: Custom Certificate is only available for SignalR Premium tier. Please enable managed identity in the corresponding SignalR Service and give the managed identity access to the key vault, the required permission is Get Certificate and Secret.

name Changes to this property will trigger replacement. str
The name of the SignalR Custom Certificate. Changing this forces a new resource to be created.
customCertificateId
This property is required.
Changes to this property will trigger replacement.
String

The certificate id of the SignalR Custom Certificate service. Changing this forces a new resource to be created.

Note: Self assigned certificate is not supported and the provisioning status will fail.

signalrServiceId
This property is required.
Changes to this property will trigger replacement.
String

The SignalR ID of the SignalR Custom Certificate. Changing this forces a new resource to be created.

Note: Custom Certificate is only available for SignalR Premium tier. Please enable managed identity in the corresponding SignalR Service and give the managed identity access to the key vault, the required permission is Get Certificate and Secret.

name Changes to this property will trigger replacement. String
The name of the SignalR Custom Certificate. Changing this forces a new resource to be created.

Outputs

All input properties are implicitly available as output properties. Additionally, the ServiceCustomCertificate resource produces the following output properties:

CertificateVersion string
The certificate version of the SignalR Custom Certificate service.
Id string
The provider-assigned unique ID for this managed resource.
CertificateVersion string
The certificate version of the SignalR Custom Certificate service.
Id string
The provider-assigned unique ID for this managed resource.
certificateVersion String
The certificate version of the SignalR Custom Certificate service.
id String
The provider-assigned unique ID for this managed resource.
certificateVersion string
The certificate version of the SignalR Custom Certificate service.
id string
The provider-assigned unique ID for this managed resource.
certificate_version str
The certificate version of the SignalR Custom Certificate service.
id str
The provider-assigned unique ID for this managed resource.
certificateVersion String
The certificate version of the SignalR Custom Certificate service.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ServiceCustomCertificate Resource

Get an existing ServiceCustomCertificate 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?: ServiceCustomCertificateState, opts?: CustomResourceOptions): ServiceCustomCertificate
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        certificate_version: Optional[str] = None,
        custom_certificate_id: Optional[str] = None,
        name: Optional[str] = None,
        signalr_service_id: Optional[str] = None) -> ServiceCustomCertificate
func GetServiceCustomCertificate(ctx *Context, name string, id IDInput, state *ServiceCustomCertificateState, opts ...ResourceOption) (*ServiceCustomCertificate, error)
public static ServiceCustomCertificate Get(string name, Input<string> id, ServiceCustomCertificateState? state, CustomResourceOptions? opts = null)
public static ServiceCustomCertificate get(String name, Output<String> id, ServiceCustomCertificateState state, CustomResourceOptions options)
resources:  _:    type: azure:signalr:ServiceCustomCertificate    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CertificateVersion string
The certificate version of the SignalR Custom Certificate service.
CustomCertificateId Changes to this property will trigger replacement. string

The certificate id of the SignalR Custom Certificate service. Changing this forces a new resource to be created.

Note: Self assigned certificate is not supported and the provisioning status will fail.

Name Changes to this property will trigger replacement. string
The name of the SignalR Custom Certificate. Changing this forces a new resource to be created.
SignalrServiceId Changes to this property will trigger replacement. string

The SignalR ID of the SignalR Custom Certificate. Changing this forces a new resource to be created.

Note: Custom Certificate is only available for SignalR Premium tier. Please enable managed identity in the corresponding SignalR Service and give the managed identity access to the key vault, the required permission is Get Certificate and Secret.

CertificateVersion string
The certificate version of the SignalR Custom Certificate service.
CustomCertificateId Changes to this property will trigger replacement. string

The certificate id of the SignalR Custom Certificate service. Changing this forces a new resource to be created.

Note: Self assigned certificate is not supported and the provisioning status will fail.

Name Changes to this property will trigger replacement. string
The name of the SignalR Custom Certificate. Changing this forces a new resource to be created.
SignalrServiceId Changes to this property will trigger replacement. string

The SignalR ID of the SignalR Custom Certificate. Changing this forces a new resource to be created.

Note: Custom Certificate is only available for SignalR Premium tier. Please enable managed identity in the corresponding SignalR Service and give the managed identity access to the key vault, the required permission is Get Certificate and Secret.

certificateVersion String
The certificate version of the SignalR Custom Certificate service.
customCertificateId Changes to this property will trigger replacement. String

The certificate id of the SignalR Custom Certificate service. Changing this forces a new resource to be created.

Note: Self assigned certificate is not supported and the provisioning status will fail.

name Changes to this property will trigger replacement. String
The name of the SignalR Custom Certificate. Changing this forces a new resource to be created.
signalrServiceId Changes to this property will trigger replacement. String

The SignalR ID of the SignalR Custom Certificate. Changing this forces a new resource to be created.

Note: Custom Certificate is only available for SignalR Premium tier. Please enable managed identity in the corresponding SignalR Service and give the managed identity access to the key vault, the required permission is Get Certificate and Secret.

certificateVersion string
The certificate version of the SignalR Custom Certificate service.
customCertificateId Changes to this property will trigger replacement. string

The certificate id of the SignalR Custom Certificate service. Changing this forces a new resource to be created.

Note: Self assigned certificate is not supported and the provisioning status will fail.

name Changes to this property will trigger replacement. string
The name of the SignalR Custom Certificate. Changing this forces a new resource to be created.
signalrServiceId Changes to this property will trigger replacement. string

The SignalR ID of the SignalR Custom Certificate. Changing this forces a new resource to be created.

Note: Custom Certificate is only available for SignalR Premium tier. Please enable managed identity in the corresponding SignalR Service and give the managed identity access to the key vault, the required permission is Get Certificate and Secret.

certificate_version str
The certificate version of the SignalR Custom Certificate service.
custom_certificate_id Changes to this property will trigger replacement. str

The certificate id of the SignalR Custom Certificate service. Changing this forces a new resource to be created.

Note: Self assigned certificate is not supported and the provisioning status will fail.

name Changes to this property will trigger replacement. str
The name of the SignalR Custom Certificate. Changing this forces a new resource to be created.
signalr_service_id Changes to this property will trigger replacement. str

The SignalR ID of the SignalR Custom Certificate. Changing this forces a new resource to be created.

Note: Custom Certificate is only available for SignalR Premium tier. Please enable managed identity in the corresponding SignalR Service and give the managed identity access to the key vault, the required permission is Get Certificate and Secret.

certificateVersion String
The certificate version of the SignalR Custom Certificate service.
customCertificateId Changes to this property will trigger replacement. String

The certificate id of the SignalR Custom Certificate service. Changing this forces a new resource to be created.

Note: Self assigned certificate is not supported and the provisioning status will fail.

name Changes to this property will trigger replacement. String
The name of the SignalR Custom Certificate. Changing this forces a new resource to be created.
signalrServiceId Changes to this property will trigger replacement. String

The SignalR ID of the SignalR Custom Certificate. Changing this forces a new resource to be created.

Note: Custom Certificate is only available for SignalR Premium tier. Please enable managed identity in the corresponding SignalR Service and give the managed identity access to the key vault, the required permission is Get Certificate and Secret.

Import

Custom Certificate for a SignalR service can be imported using the resource id, e.g.

$ pulumi import azure:signalr/serviceCustomCertificate:ServiceCustomCertificate example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.SignalRService/signalR/signalr1/customCertificates/cert1
Copy

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.