1. Packages
  2. Azure Classic
  3. API Docs
  4. fluidrelay
  5. Server

We recommend using Azure Native.

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

azure.fluidrelay.Server

Explore with Pulumi AI

Manages a Fluid Relay Server.

Example Usage

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

const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleServer = new azure.fluidrelay.Server("example", {
    name: "example",
    resourceGroupName: example.name,
    location: example.location,
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_server = azure.fluidrelay.Server("example",
    name="example",
    resource_group_name=example.name,
    location=example.location)
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/fluidrelay"
	"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("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		_, err = fluidrelay.NewServer(ctx, "example", &fluidrelay.ServerArgs{
			Name:              pulumi.String("example"),
			ResourceGroupName: example.Name,
			Location:          example.Location,
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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 = "example-resources",
        Location = "West Europe",
    });

    var exampleServer = new Azure.FluidRelay.Server("example", new()
    {
        Name = "example",
        ResourceGroupName = example.Name,
        Location = example.Location,
    });

});
Copy
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.fluidrelay.Server;
import com.pulumi.azure.fluidrelay.ServerArgs;
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("example-resources")
            .location("West Europe")
            .build());

        var exampleServer = new Server("exampleServer", ServerArgs.builder()
            .name("example")
            .resourceGroupName(example.name())
            .location(example.location())
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleServer:
    type: azure:fluidrelay:Server
    name: example
    properties:
      name: example
      resourceGroupName: ${example.name}
      location: ${example.location}
Copy

Create Server Resource

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

Constructor syntax

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

@overload
def Server(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           resource_group_name: Optional[str] = None,
           customer_managed_key: Optional[ServerCustomerManagedKeyArgs] = None,
           identity: Optional[ServerIdentityArgs] = None,
           location: Optional[str] = None,
           name: Optional[str] = None,
           storage_sku: Optional[str] = None,
           tags: Optional[Mapping[str, str]] = None)
func NewServer(ctx *Context, name string, args ServerArgs, opts ...ResourceOption) (*Server, error)
public Server(string name, ServerArgs args, CustomResourceOptions? opts = null)
public Server(String name, ServerArgs args)
public Server(String name, ServerArgs args, CustomResourceOptions options)
type: azure:fluidrelay:Server
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. ServerArgs
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. ServerArgs
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. ServerArgs
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. ServerArgs
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. ServerArgs
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 azureServerResource = new Azure.FluidRelay.Server("azureServerResource", new()
{
    ResourceGroupName = "string",
    CustomerManagedKey = new Azure.FluidRelay.Inputs.ServerCustomerManagedKeyArgs
    {
        KeyVaultKeyId = "string",
        UserAssignedIdentityId = "string",
    },
    Identity = new Azure.FluidRelay.Inputs.ServerIdentityArgs
    {
        Type = "string",
        IdentityIds = new[]
        {
            "string",
        },
        PrincipalId = "string",
        TenantId = "string",
    },
    Location = "string",
    Name = "string",
    StorageSku = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := fluidrelay.NewServer(ctx, "azureServerResource", &fluidrelay.ServerArgs{
	ResourceGroupName: pulumi.String("string"),
	CustomerManagedKey: &fluidrelay.ServerCustomerManagedKeyArgs{
		KeyVaultKeyId:          pulumi.String("string"),
		UserAssignedIdentityId: pulumi.String("string"),
	},
	Identity: &fluidrelay.ServerIdentityArgs{
		Type: pulumi.String("string"),
		IdentityIds: pulumi.StringArray{
			pulumi.String("string"),
		},
		PrincipalId: pulumi.String("string"),
		TenantId:    pulumi.String("string"),
	},
	Location:   pulumi.String("string"),
	Name:       pulumi.String("string"),
	StorageSku: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var azureServerResource = new Server("azureServerResource", ServerArgs.builder()
    .resourceGroupName("string")
    .customerManagedKey(ServerCustomerManagedKeyArgs.builder()
        .keyVaultKeyId("string")
        .userAssignedIdentityId("string")
        .build())
    .identity(ServerIdentityArgs.builder()
        .type("string")
        .identityIds("string")
        .principalId("string")
        .tenantId("string")
        .build())
    .location("string")
    .name("string")
    .storageSku("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
azure_server_resource = azure.fluidrelay.Server("azureServerResource",
    resource_group_name="string",
    customer_managed_key={
        "key_vault_key_id": "string",
        "user_assigned_identity_id": "string",
    },
    identity={
        "type": "string",
        "identity_ids": ["string"],
        "principal_id": "string",
        "tenant_id": "string",
    },
    location="string",
    name="string",
    storage_sku="string",
    tags={
        "string": "string",
    })
Copy
const azureServerResource = new azure.fluidrelay.Server("azureServerResource", {
    resourceGroupName: "string",
    customerManagedKey: {
        keyVaultKeyId: "string",
        userAssignedIdentityId: "string",
    },
    identity: {
        type: "string",
        identityIds: ["string"],
        principalId: "string",
        tenantId: "string",
    },
    location: "string",
    name: "string",
    storageSku: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure:fluidrelay:Server
properties:
    customerManagedKey:
        keyVaultKeyId: string
        userAssignedIdentityId: string
    identity:
        identityIds:
            - string
        principalId: string
        tenantId: string
        type: string
    location: string
    name: string
    resourceGroupName: string
    storageSku: string
    tags:
        string: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
CustomerManagedKey Changes to this property will trigger replacement. ServerCustomerManagedKey
A customer_managed_key block as defined below. Changing this forces a new resource to be created.
Identity ServerIdentity
An identity block as defined below.
Location Changes to this property will trigger replacement. string
The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
StorageSku Changes to this property will trigger replacement. string
Sku of the storage associated with the resource, Possible values are standard and basic. Changing this forces a new Fluid Relay Server to be created.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to the Fluid Relay Server.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
CustomerManagedKey Changes to this property will trigger replacement. ServerCustomerManagedKeyArgs
A customer_managed_key block as defined below. Changing this forces a new resource to be created.
Identity ServerIdentityArgs
An identity block as defined below.
Location Changes to this property will trigger replacement. string
The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
StorageSku Changes to this property will trigger replacement. string
Sku of the storage associated with the resource, Possible values are standard and basic. Changing this forces a new Fluid Relay Server to be created.
Tags map[string]string
A mapping of tags which should be assigned to the Fluid Relay Server.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
customerManagedKey Changes to this property will trigger replacement. ServerCustomerManagedKey
A customer_managed_key block as defined below. Changing this forces a new resource to be created.
identity ServerIdentity
An identity block as defined below.
location Changes to this property will trigger replacement. String
The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
storageSku Changes to this property will trigger replacement. String
Sku of the storage associated with the resource, Possible values are standard and basic. Changing this forces a new Fluid Relay Server to be created.
tags Map<String,String>
A mapping of tags which should be assigned to the Fluid Relay Server.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
customerManagedKey Changes to this property will trigger replacement. ServerCustomerManagedKey
A customer_managed_key block as defined below. Changing this forces a new resource to be created.
identity ServerIdentity
An identity block as defined below.
location Changes to this property will trigger replacement. string
The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
name Changes to this property will trigger replacement. string
The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
storageSku Changes to this property will trigger replacement. string
Sku of the storage associated with the resource, Possible values are standard and basic. Changing this forces a new Fluid Relay Server to be created.
tags {[key: string]: string}
A mapping of tags which should be assigned to the Fluid Relay Server.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
customer_managed_key Changes to this property will trigger replacement. ServerCustomerManagedKeyArgs
A customer_managed_key block as defined below. Changing this forces a new resource to be created.
identity ServerIdentityArgs
An identity block as defined below.
location Changes to this property will trigger replacement. str
The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
name Changes to this property will trigger replacement. str
The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
storage_sku Changes to this property will trigger replacement. str
Sku of the storage associated with the resource, Possible values are standard and basic. Changing this forces a new Fluid Relay Server to be created.
tags Mapping[str, str]
A mapping of tags which should be assigned to the Fluid Relay Server.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
customerManagedKey Changes to this property will trigger replacement. Property Map
A customer_managed_key block as defined below. Changing this forces a new resource to be created.
identity Property Map
An identity block as defined below.
location Changes to this property will trigger replacement. String
The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
storageSku Changes to this property will trigger replacement. String
Sku of the storage associated with the resource, Possible values are standard and basic. Changing this forces a new Fluid Relay Server to be created.
tags Map<String>
A mapping of tags which should be assigned to the Fluid Relay Server.

Outputs

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

FrsTenantId string
The Fluid tenantId for this server.
Id string
The provider-assigned unique ID for this managed resource.
OrdererEndpoints List<string>
An array of the Fluid Relay Orderer endpoints. This will be deprecated in future version of fluid relay server and will always be empty, more details.
PrimaryKey string
The primary key for this server.
SecondaryKey string
The secondary key for this server.
ServiceEndpoints List<string>
An array of service endpoints for this Fluid Relay Server.
StorageEndpoints List<string>
An array of storage endpoints for this Fluid Relay Server. This will be deprecated in future version of fluid relay server and will always be empty, more details.
FrsTenantId string
The Fluid tenantId for this server.
Id string
The provider-assigned unique ID for this managed resource.
OrdererEndpoints []string
An array of the Fluid Relay Orderer endpoints. This will be deprecated in future version of fluid relay server and will always be empty, more details.
PrimaryKey string
The primary key for this server.
SecondaryKey string
The secondary key for this server.
ServiceEndpoints []string
An array of service endpoints for this Fluid Relay Server.
StorageEndpoints []string
An array of storage endpoints for this Fluid Relay Server. This will be deprecated in future version of fluid relay server and will always be empty, more details.
frsTenantId String
The Fluid tenantId for this server.
id String
The provider-assigned unique ID for this managed resource.
ordererEndpoints List<String>
An array of the Fluid Relay Orderer endpoints. This will be deprecated in future version of fluid relay server and will always be empty, more details.
primaryKey String
The primary key for this server.
secondaryKey String
The secondary key for this server.
serviceEndpoints List<String>
An array of service endpoints for this Fluid Relay Server.
storageEndpoints List<String>
An array of storage endpoints for this Fluid Relay Server. This will be deprecated in future version of fluid relay server and will always be empty, more details.
frsTenantId string
The Fluid tenantId for this server.
id string
The provider-assigned unique ID for this managed resource.
ordererEndpoints string[]
An array of the Fluid Relay Orderer endpoints. This will be deprecated in future version of fluid relay server and will always be empty, more details.
primaryKey string
The primary key for this server.
secondaryKey string
The secondary key for this server.
serviceEndpoints string[]
An array of service endpoints for this Fluid Relay Server.
storageEndpoints string[]
An array of storage endpoints for this Fluid Relay Server. This will be deprecated in future version of fluid relay server and will always be empty, more details.
frs_tenant_id str
The Fluid tenantId for this server.
id str
The provider-assigned unique ID for this managed resource.
orderer_endpoints Sequence[str]
An array of the Fluid Relay Orderer endpoints. This will be deprecated in future version of fluid relay server and will always be empty, more details.
primary_key str
The primary key for this server.
secondary_key str
The secondary key for this server.
service_endpoints Sequence[str]
An array of service endpoints for this Fluid Relay Server.
storage_endpoints Sequence[str]
An array of storage endpoints for this Fluid Relay Server. This will be deprecated in future version of fluid relay server and will always be empty, more details.
frsTenantId String
The Fluid tenantId for this server.
id String
The provider-assigned unique ID for this managed resource.
ordererEndpoints List<String>
An array of the Fluid Relay Orderer endpoints. This will be deprecated in future version of fluid relay server and will always be empty, more details.
primaryKey String
The primary key for this server.
secondaryKey String
The secondary key for this server.
serviceEndpoints List<String>
An array of service endpoints for this Fluid Relay Server.
storageEndpoints List<String>
An array of storage endpoints for this Fluid Relay Server. This will be deprecated in future version of fluid relay server and will always be empty, more details.

Look up Existing Server Resource

Get an existing Server 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?: ServerState, opts?: CustomResourceOptions): Server
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        customer_managed_key: Optional[ServerCustomerManagedKeyArgs] = None,
        frs_tenant_id: Optional[str] = None,
        identity: Optional[ServerIdentityArgs] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        orderer_endpoints: Optional[Sequence[str]] = None,
        primary_key: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        secondary_key: Optional[str] = None,
        service_endpoints: Optional[Sequence[str]] = None,
        storage_endpoints: Optional[Sequence[str]] = None,
        storage_sku: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None) -> Server
func GetServer(ctx *Context, name string, id IDInput, state *ServerState, opts ...ResourceOption) (*Server, error)
public static Server Get(string name, Input<string> id, ServerState? state, CustomResourceOptions? opts = null)
public static Server get(String name, Output<String> id, ServerState state, CustomResourceOptions options)
resources:  _:    type: azure:fluidrelay:Server    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:
CustomerManagedKey Changes to this property will trigger replacement. ServerCustomerManagedKey
A customer_managed_key block as defined below. Changing this forces a new resource to be created.
FrsTenantId string
The Fluid tenantId for this server.
Identity ServerIdentity
An identity block as defined below.
Location Changes to this property will trigger replacement. string
The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
OrdererEndpoints List<string>
An array of the Fluid Relay Orderer endpoints. This will be deprecated in future version of fluid relay server and will always be empty, more details.
PrimaryKey string
The primary key for this server.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
SecondaryKey string
The secondary key for this server.
ServiceEndpoints List<string>
An array of service endpoints for this Fluid Relay Server.
StorageEndpoints List<string>
An array of storage endpoints for this Fluid Relay Server. This will be deprecated in future version of fluid relay server and will always be empty, more details.
StorageSku Changes to this property will trigger replacement. string
Sku of the storage associated with the resource, Possible values are standard and basic. Changing this forces a new Fluid Relay Server to be created.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to the Fluid Relay Server.
CustomerManagedKey Changes to this property will trigger replacement. ServerCustomerManagedKeyArgs
A customer_managed_key block as defined below. Changing this forces a new resource to be created.
FrsTenantId string
The Fluid tenantId for this server.
Identity ServerIdentityArgs
An identity block as defined below.
Location Changes to this property will trigger replacement. string
The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
Name Changes to this property will trigger replacement. string
The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
OrdererEndpoints []string
An array of the Fluid Relay Orderer endpoints. This will be deprecated in future version of fluid relay server and will always be empty, more details.
PrimaryKey string
The primary key for this server.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
SecondaryKey string
The secondary key for this server.
ServiceEndpoints []string
An array of service endpoints for this Fluid Relay Server.
StorageEndpoints []string
An array of storage endpoints for this Fluid Relay Server. This will be deprecated in future version of fluid relay server and will always be empty, more details.
StorageSku Changes to this property will trigger replacement. string
Sku of the storage associated with the resource, Possible values are standard and basic. Changing this forces a new Fluid Relay Server to be created.
Tags map[string]string
A mapping of tags which should be assigned to the Fluid Relay Server.
customerManagedKey Changes to this property will trigger replacement. ServerCustomerManagedKey
A customer_managed_key block as defined below. Changing this forces a new resource to be created.
frsTenantId String
The Fluid tenantId for this server.
identity ServerIdentity
An identity block as defined below.
location Changes to this property will trigger replacement. String
The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
ordererEndpoints List<String>
An array of the Fluid Relay Orderer endpoints. This will be deprecated in future version of fluid relay server and will always be empty, more details.
primaryKey String
The primary key for this server.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
secondaryKey String
The secondary key for this server.
serviceEndpoints List<String>
An array of service endpoints for this Fluid Relay Server.
storageEndpoints List<String>
An array of storage endpoints for this Fluid Relay Server. This will be deprecated in future version of fluid relay server and will always be empty, more details.
storageSku Changes to this property will trigger replacement. String
Sku of the storage associated with the resource, Possible values are standard and basic. Changing this forces a new Fluid Relay Server to be created.
tags Map<String,String>
A mapping of tags which should be assigned to the Fluid Relay Server.
customerManagedKey Changes to this property will trigger replacement. ServerCustomerManagedKey
A customer_managed_key block as defined below. Changing this forces a new resource to be created.
frsTenantId string
The Fluid tenantId for this server.
identity ServerIdentity
An identity block as defined below.
location Changes to this property will trigger replacement. string
The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
name Changes to this property will trigger replacement. string
The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
ordererEndpoints string[]
An array of the Fluid Relay Orderer endpoints. This will be deprecated in future version of fluid relay server and will always be empty, more details.
primaryKey string
The primary key for this server.
resourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
secondaryKey string
The secondary key for this server.
serviceEndpoints string[]
An array of service endpoints for this Fluid Relay Server.
storageEndpoints string[]
An array of storage endpoints for this Fluid Relay Server. This will be deprecated in future version of fluid relay server and will always be empty, more details.
storageSku Changes to this property will trigger replacement. string
Sku of the storage associated with the resource, Possible values are standard and basic. Changing this forces a new Fluid Relay Server to be created.
tags {[key: string]: string}
A mapping of tags which should be assigned to the Fluid Relay Server.
customer_managed_key Changes to this property will trigger replacement. ServerCustomerManagedKeyArgs
A customer_managed_key block as defined below. Changing this forces a new resource to be created.
frs_tenant_id str
The Fluid tenantId for this server.
identity ServerIdentityArgs
An identity block as defined below.
location Changes to this property will trigger replacement. str
The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
name Changes to this property will trigger replacement. str
The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
orderer_endpoints Sequence[str]
An array of the Fluid Relay Orderer endpoints. This will be deprecated in future version of fluid relay server and will always be empty, more details.
primary_key str
The primary key for this server.
resource_group_name Changes to this property will trigger replacement. str
The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
secondary_key str
The secondary key for this server.
service_endpoints Sequence[str]
An array of service endpoints for this Fluid Relay Server.
storage_endpoints Sequence[str]
An array of storage endpoints for this Fluid Relay Server. This will be deprecated in future version of fluid relay server and will always be empty, more details.
storage_sku Changes to this property will trigger replacement. str
Sku of the storage associated with the resource, Possible values are standard and basic. Changing this forces a new Fluid Relay Server to be created.
tags Mapping[str, str]
A mapping of tags which should be assigned to the Fluid Relay Server.
customerManagedKey Changes to this property will trigger replacement. Property Map
A customer_managed_key block as defined below. Changing this forces a new resource to be created.
frsTenantId String
The Fluid tenantId for this server.
identity Property Map
An identity block as defined below.
location Changes to this property will trigger replacement. String
The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
name Changes to this property will trigger replacement. String
The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
ordererEndpoints List<String>
An array of the Fluid Relay Orderer endpoints. This will be deprecated in future version of fluid relay server and will always be empty, more details.
primaryKey String
The primary key for this server.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
secondaryKey String
The secondary key for this server.
serviceEndpoints List<String>
An array of service endpoints for this Fluid Relay Server.
storageEndpoints List<String>
An array of storage endpoints for this Fluid Relay Server. This will be deprecated in future version of fluid relay server and will always be empty, more details.
storageSku Changes to this property will trigger replacement. String
Sku of the storage associated with the resource, Possible values are standard and basic. Changing this forces a new Fluid Relay Server to be created.
tags Map<String>
A mapping of tags which should be assigned to the Fluid Relay Server.

Supporting Types

ServerCustomerManagedKey
, ServerCustomerManagedKeyArgs

KeyVaultKeyId This property is required. string
The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
UserAssignedIdentityId This property is required. string
The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
KeyVaultKeyId This property is required. string
The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
UserAssignedIdentityId This property is required. string
The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
keyVaultKeyId This property is required. String
The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
userAssignedIdentityId This property is required. String
The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
keyVaultKeyId This property is required. string
The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
userAssignedIdentityId This property is required. string
The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
key_vault_key_id This property is required. str
The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
user_assigned_identity_id This property is required. str
The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
keyVaultKeyId This property is required. String
The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
userAssignedIdentityId This property is required. String
The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.

ServerIdentity
, ServerIdentityArgs

Type This property is required. string
Specifies the type of Managed Service Identity that should be configured on this Fluid Relay Service. Possible values are SystemAssigned,UserAssigned and SystemAssigned, UserAssigned.
IdentityIds List<string>
Specifies a list of User Assigned Managed Identity IDs to be assigned to this Fluid Relay Service.
PrincipalId string
The Principal ID for the Service Principal associated with the Identity of this Fluid Relay Server.
TenantId string
The Tenant ID for the Service Principal associated with the Identity of this Fluid Relay Server.
Type This property is required. string
Specifies the type of Managed Service Identity that should be configured on this Fluid Relay Service. Possible values are SystemAssigned,UserAssigned and SystemAssigned, UserAssigned.
IdentityIds []string
Specifies a list of User Assigned Managed Identity IDs to be assigned to this Fluid Relay Service.
PrincipalId string
The Principal ID for the Service Principal associated with the Identity of this Fluid Relay Server.
TenantId string
The Tenant ID for the Service Principal associated with the Identity of this Fluid Relay Server.
type This property is required. String
Specifies the type of Managed Service Identity that should be configured on this Fluid Relay Service. Possible values are SystemAssigned,UserAssigned and SystemAssigned, UserAssigned.
identityIds List<String>
Specifies a list of User Assigned Managed Identity IDs to be assigned to this Fluid Relay Service.
principalId String
The Principal ID for the Service Principal associated with the Identity of this Fluid Relay Server.
tenantId String
The Tenant ID for the Service Principal associated with the Identity of this Fluid Relay Server.
type This property is required. string
Specifies the type of Managed Service Identity that should be configured on this Fluid Relay Service. Possible values are SystemAssigned,UserAssigned and SystemAssigned, UserAssigned.
identityIds string[]
Specifies a list of User Assigned Managed Identity IDs to be assigned to this Fluid Relay Service.
principalId string
The Principal ID for the Service Principal associated with the Identity of this Fluid Relay Server.
tenantId string
The Tenant ID for the Service Principal associated with the Identity of this Fluid Relay Server.
type This property is required. str
Specifies the type of Managed Service Identity that should be configured on this Fluid Relay Service. Possible values are SystemAssigned,UserAssigned and SystemAssigned, UserAssigned.
identity_ids Sequence[str]
Specifies a list of User Assigned Managed Identity IDs to be assigned to this Fluid Relay Service.
principal_id str
The Principal ID for the Service Principal associated with the Identity of this Fluid Relay Server.
tenant_id str
The Tenant ID for the Service Principal associated with the Identity of this Fluid Relay Server.
type This property is required. String
Specifies the type of Managed Service Identity that should be configured on this Fluid Relay Service. Possible values are SystemAssigned,UserAssigned and SystemAssigned, UserAssigned.
identityIds List<String>
Specifies a list of User Assigned Managed Identity IDs to be assigned to this Fluid Relay Service.
principalId String
The Principal ID for the Service Principal associated with the Identity of this Fluid Relay Server.
tenantId String
The Tenant ID for the Service Principal associated with the Identity of this Fluid Relay Server.

Import

Fluid Relay Servers can be imported using the resource id, e.g.

$ pulumi import azure:fluidrelay/server:Server example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.FluidRelay/fluidRelayServers/server1
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.