We recommend using Azure Native.
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,
});
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)
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
	})
}
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,
    });
});
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());
    }
}
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}
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 string
- The unique name of the resource.
- args ServerArgs
- 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 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 string
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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" },
    },
});
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"),
	},
})
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());
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",
    })
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",
    },
});
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
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:
- ResourceGroup stringName 
- The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- CustomerManaged ServerKey Customer Managed Key 
- A customer_managed_keyblock as defined below. Changing this forces a new resource to be created.
- Identity
ServerIdentity 
- An identityblock as defined below.
- Location string
- The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- Name string
- The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
- StorageSku string
- Sku of the storage associated with the resource, Possible values are standardandbasic. Changing this forces a new Fluid Relay Server to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Fluid Relay Server.
- ResourceGroup stringName 
- The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- CustomerManaged ServerKey Customer Managed Key Args 
- A customer_managed_keyblock as defined below. Changing this forces a new resource to be created.
- Identity
ServerIdentity Args 
- An identityblock as defined below.
- Location string
- The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- Name string
- The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
- StorageSku string
- Sku of the storage associated with the resource, Possible values are standardandbasic. Changing this forces a new Fluid Relay Server to be created.
- map[string]string
- A mapping of tags which should be assigned to the Fluid Relay Server.
- resourceGroup StringName 
- The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- customerManaged ServerKey Customer Managed Key 
- A customer_managed_keyblock as defined below. Changing this forces a new resource to be created.
- identity
ServerIdentity 
- An identityblock as defined below.
- location String
- The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- name String
- The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
- storageSku String
- Sku of the storage associated with the resource, Possible values are standardandbasic. Changing this forces a new Fluid Relay Server to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Fluid Relay Server.
- resourceGroup stringName 
- The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- customerManaged ServerKey Customer Managed Key 
- A customer_managed_keyblock as defined below. Changing this forces a new resource to be created.
- identity
ServerIdentity 
- An identityblock as defined below.
- location string
- The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- name string
- The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
- storageSku string
- Sku of the storage associated with the resource, Possible values are standardandbasic. Changing this forces a new Fluid Relay Server to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Fluid Relay Server.
- resource_group_ strname 
- 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_ Serverkey Customer Managed Key Args 
- A customer_managed_keyblock as defined below. Changing this forces a new resource to be created.
- identity
ServerIdentity Args 
- An identityblock as defined below.
- location str
- The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- name 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 str
- Sku of the storage associated with the resource, Possible values are standardandbasic. Changing this forces a new Fluid Relay Server to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Fluid Relay Server.
- resourceGroup StringName 
- The name of the Resource Group where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- customerManaged Property MapKey 
- A customer_managed_keyblock as defined below. Changing this forces a new resource to be created.
- identity Property Map
- An identityblock as defined below.
- location String
- The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- name String
- The name which should be used for this Fluid Relay Server. Changing this forces a new Fluid Relay Server to be created.
- storageSku String
- Sku of the storage associated with the resource, Possible values are standardandbasic. Changing this forces a new Fluid Relay Server to be created.
- 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:
- FrsTenant stringId 
- 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.
- FrsTenant stringId 
- 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.
- frsTenant StringId 
- 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.
- frsTenant stringId 
- 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_ strid 
- 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.
- frsTenant StringId 
- 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) -> Serverfunc 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
- 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.
- CustomerManaged ServerKey Customer Managed Key 
- A customer_managed_keyblock as defined below. Changing this forces a new resource to be created.
- FrsTenant stringId 
- The Fluid tenantId for this server.
- Identity
ServerIdentity 
- An identityblock as defined below.
- Location string
- The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- Name 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.
- ResourceGroup stringName 
- 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 string
- Sku of the storage associated with the resource, Possible values are standardandbasic. Changing this forces a new Fluid Relay Server to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Fluid Relay Server.
- CustomerManaged ServerKey Customer Managed Key Args 
- A customer_managed_keyblock as defined below. Changing this forces a new resource to be created.
- FrsTenant stringId 
- The Fluid tenantId for this server.
- Identity
ServerIdentity Args 
- An identityblock as defined below.
- Location string
- The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- Name 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.
- ResourceGroup stringName 
- 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 string
- Sku of the storage associated with the resource, Possible values are standardandbasic. Changing this forces a new Fluid Relay Server to be created.
- map[string]string
- A mapping of tags which should be assigned to the Fluid Relay Server.
- customerManaged ServerKey Customer Managed Key 
- A customer_managed_keyblock as defined below. Changing this forces a new resource to be created.
- frsTenant StringId 
- The Fluid tenantId for this server.
- identity
ServerIdentity 
- An identityblock as defined below.
- location String
- The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- name 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.
- resourceGroup StringName 
- 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 String
- Sku of the storage associated with the resource, Possible values are standardandbasic. Changing this forces a new Fluid Relay Server to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Fluid Relay Server.
- customerManaged ServerKey Customer Managed Key 
- A customer_managed_keyblock as defined below. Changing this forces a new resource to be created.
- frsTenant stringId 
- The Fluid tenantId for this server.
- identity
ServerIdentity 
- An identityblock as defined below.
- location string
- The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- name 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.
- resourceGroup stringName 
- 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 string
- Sku of the storage associated with the resource, Possible values are standardandbasic. Changing this forces a new Fluid Relay Server to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Fluid Relay Server.
- customer_managed_ Serverkey Customer Managed Key Args 
- A customer_managed_keyblock as defined below. Changing this forces a new resource to be created.
- frs_tenant_ strid 
- The Fluid tenantId for this server.
- identity
ServerIdentity Args 
- An identityblock as defined below.
- location str
- The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- name 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_ strname 
- 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 str
- Sku of the storage associated with the resource, Possible values are standardandbasic. Changing this forces a new Fluid Relay Server to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Fluid Relay Server.
- customerManaged Property MapKey 
- A customer_managed_keyblock as defined below. Changing this forces a new resource to be created.
- frsTenant StringId 
- The Fluid tenantId for this server.
- identity Property Map
- An identityblock as defined below.
- location String
- The Azure Region where the Fluid Relay Server should exist. Changing this forces a new Fluid Relay Server to be created.
- name 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.
- resourceGroup StringName 
- 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 String
- Sku of the storage associated with the resource, Possible values are standardandbasic. Changing this forces a new Fluid Relay Server to be created.
- Map<String>
- A mapping of tags which should be assigned to the Fluid Relay Server.
Supporting Types
ServerCustomerManagedKey, ServerCustomerManagedKeyArgs        
- KeyVault stringKey Id 
- The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
- UserAssigned stringIdentity Id 
- The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
- KeyVault stringKey Id 
- The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
- UserAssigned stringIdentity Id 
- The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
- keyVault StringKey Id 
- The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
- userAssigned StringIdentity Id 
- The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
- keyVault stringKey Id 
- The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
- userAssigned stringIdentity Id 
- The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
- key_vault_ strkey_ id 
- The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
- user_assigned_ stridentity_ id 
- The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
- keyVault StringKey Id 
- The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
- userAssigned StringIdentity Id 
- The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
ServerIdentity, ServerIdentityArgs    
- Type string
- Specifies the type of Managed Service Identity that should be configured on this Fluid Relay Service. Possible values are SystemAssigned,UserAssignedandSystemAssigned, 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 string
- Specifies the type of Managed Service Identity that should be configured on this Fluid Relay Service. Possible values are SystemAssigned,UserAssignedandSystemAssigned, 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 String
- Specifies the type of Managed Service Identity that should be configured on this Fluid Relay Service. Possible values are SystemAssigned,UserAssignedandSystemAssigned, 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 string
- Specifies the type of Managed Service Identity that should be configured on this Fluid Relay Service. Possible values are SystemAssigned,UserAssignedandSystemAssigned, 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 str
- Specifies the type of Managed Service Identity that should be configured on this Fluid Relay Service. Possible values are SystemAssigned,UserAssignedandSystemAssigned, 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 String
- Specifies the type of Managed Service Identity that should be configured on this Fluid Relay Service. Possible values are SystemAssigned,UserAssignedandSystemAssigned, 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
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 azurermTerraform Provider.