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:
- Resource
Group 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.
- Customer
Managed ServerKey Customer Managed Key - A
customer_managed_key
block as defined below. Changing this forces a new resource to be created. - Identity
Server
Identity - An
identity
block 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.
- Storage
Sku string - Sku of the storage associated with the resource, Possible values are
standard
andbasic
. 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.
- Resource
Group 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.
- Customer
Managed ServerKey Customer Managed Key Args - A
customer_managed_key
block as defined below. Changing this forces a new resource to be created. - Identity
Server
Identity Args - An
identity
block 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.
- Storage
Sku string - Sku of the storage associated with the resource, Possible values are
standard
andbasic
. 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.
- resource
Group 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.
- customer
Managed ServerKey Customer Managed Key - A
customer_managed_key
block as defined below. Changing this forces a new resource to be created. - identity
Server
Identity - An
identity
block 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.
- storage
Sku String - Sku of the storage associated with the resource, Possible values are
standard
andbasic
. 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.
- resource
Group 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.
- customer
Managed ServerKey Customer Managed Key - A
customer_managed_key
block as defined below. Changing this forces a new resource to be created. - identity
Server
Identity - An
identity
block 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.
- storage
Sku string - Sku of the storage associated with the resource, Possible values are
standard
andbasic
. 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_key
block as defined below. Changing this forces a new resource to be created. - identity
Server
Identity Args - An
identity
block 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
standard
andbasic
. 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.
- resource
Group 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.
- customer
Managed Property MapKey - 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 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.
- storage
Sku String - Sku of the storage associated with the resource, Possible values are
standard
andbasic
. 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:
- Frs
Tenant stringId - The Fluid tenantId for this server.
- Id string
- The provider-assigned unique ID for this managed resource.
- Orderer
Endpoints 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.
- Primary
Key string - The primary key for this server.
- Secondary
Key string - The secondary key for this server.
- Service
Endpoints List<string> - An array of service endpoints for this Fluid Relay Server.
- Storage
Endpoints 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.
- Frs
Tenant stringId - The Fluid tenantId for this server.
- Id string
- The provider-assigned unique ID for this managed resource.
- Orderer
Endpoints []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.
- Primary
Key string - The primary key for this server.
- Secondary
Key string - The secondary key for this server.
- Service
Endpoints []string - An array of service endpoints for this Fluid Relay Server.
- Storage
Endpoints []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 StringId - The Fluid tenantId for this server.
- id String
- The provider-assigned unique ID for this managed resource.
- orderer
Endpoints 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.
- primary
Key String - The primary key for this server.
- secondary
Key String - The secondary key for this server.
- service
Endpoints List<String> - An array of service endpoints for this Fluid Relay Server.
- storage
Endpoints 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.
- frs
Tenant stringId - The Fluid tenantId for this server.
- id string
- The provider-assigned unique ID for this managed resource.
- orderer
Endpoints 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.
- primary
Key string - The primary key for this server.
- secondary
Key string - The secondary key for this server.
- service
Endpoints string[] - An array of service endpoints for this Fluid Relay Server.
- storage
Endpoints 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.
- frs
Tenant StringId - The Fluid tenantId for this server.
- id String
- The provider-assigned unique ID for this managed resource.
- orderer
Endpoints 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.
- primary
Key String - The primary key for this server.
- secondary
Key String - The secondary key for this server.
- service
Endpoints List<String> - An array of service endpoints for this Fluid Relay Server.
- storage
Endpoints 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)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Customer
Managed ServerKey Customer Managed Key - A
customer_managed_key
block as defined below. Changing this forces a new resource to be created. - Frs
Tenant stringId - The Fluid tenantId for this server.
- Identity
Server
Identity - An
identity
block 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.
- Orderer
Endpoints 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.
- Primary
Key string - The primary key for this server.
- Resource
Group 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.
- Secondary
Key string - The secondary key for this server.
- Service
Endpoints List<string> - An array of service endpoints for this Fluid Relay Server.
- Storage
Endpoints 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.
- Storage
Sku string - Sku of the storage associated with the resource, Possible values are
standard
andbasic
. 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.
- Customer
Managed ServerKey Customer Managed Key Args - A
customer_managed_key
block as defined below. Changing this forces a new resource to be created. - Frs
Tenant stringId - The Fluid tenantId for this server.
- Identity
Server
Identity Args - An
identity
block 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.
- Orderer
Endpoints []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.
- Primary
Key string - The primary key for this server.
- Resource
Group 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.
- Secondary
Key string - The secondary key for this server.
- Service
Endpoints []string - An array of service endpoints for this Fluid Relay Server.
- Storage
Endpoints []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.
- Storage
Sku string - Sku of the storage associated with the resource, Possible values are
standard
andbasic
. 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.
- customer
Managed ServerKey Customer Managed Key - A
customer_managed_key
block as defined below. Changing this forces a new resource to be created. - frs
Tenant StringId - The Fluid tenantId for this server.
- identity
Server
Identity - An
identity
block 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.
- orderer
Endpoints 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.
- primary
Key String - The primary key for this server.
- resource
Group 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.
- secondary
Key String - The secondary key for this server.
- service
Endpoints List<String> - An array of service endpoints for this Fluid Relay Server.
- storage
Endpoints 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.
- storage
Sku String - Sku of the storage associated with the resource, Possible values are
standard
andbasic
. 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.
- customer
Managed ServerKey Customer Managed Key - A
customer_managed_key
block as defined below. Changing this forces a new resource to be created. - frs
Tenant stringId - The Fluid tenantId for this server.
- identity
Server
Identity - An
identity
block 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.
- orderer
Endpoints 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.
- primary
Key string - The primary key for this server.
- resource
Group 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.
- secondary
Key string - The secondary key for this server.
- service
Endpoints string[] - An array of service endpoints for this Fluid Relay Server.
- storage
Endpoints 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.
- storage
Sku string - Sku of the storage associated with the resource, Possible values are
standard
andbasic
. 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_key
block as defined below. Changing this forces a new resource to be created. - frs_
tenant_ strid - The Fluid tenantId for this server.
- identity
Server
Identity Args - An
identity
block 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
standard
andbasic
. 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.
- customer
Managed Property MapKey - A
customer_managed_key
block as defined below. Changing this forces a new resource to be created. - frs
Tenant StringId - The Fluid tenantId for this server.
- identity Property Map
- An
identity
block 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.
- orderer
Endpoints 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.
- primary
Key String - The primary key for this server.
- resource
Group 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.
- secondary
Key String - The secondary key for this server.
- service
Endpoints List<String> - An array of service endpoints for this Fluid Relay Server.
- storage
Endpoints 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.
- storage
Sku String - Sku of the storage associated with the resource, Possible values are
standard
andbasic
. 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
- Key
Vault stringKey Id - The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
- User
Assigned stringIdentity Id - The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
- Key
Vault stringKey Id - The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
- User
Assigned stringIdentity Id - The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
- key
Vault StringKey Id - The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
- user
Assigned StringIdentity Id - The User Assigned Managed Identity ID to be used for accessing the Customer Managed Key for encryption.
- key
Vault stringKey Id - The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
- user
Assigned 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.
- key
Vault StringKey Id - The Key Vault Key Id that will be used to encrypt the Fluid Relay Server.
- user
Assigned 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
,UserAssigned
andSystemAssigned, UserAssigned
. - Identity
Ids List<string> - Specifies a list of User Assigned Managed Identity IDs to be assigned to this Fluid Relay Service.
- Principal
Id string - The Principal ID for the Service Principal associated with the Identity of this Fluid Relay Server.
- Tenant
Id 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
,UserAssigned
andSystemAssigned, UserAssigned
. - Identity
Ids []string - Specifies a list of User Assigned Managed Identity IDs to be assigned to this Fluid Relay Service.
- Principal
Id string - The Principal ID for the Service Principal associated with the Identity of this Fluid Relay Server.
- Tenant
Id 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
,UserAssigned
andSystemAssigned, UserAssigned
. - identity
Ids List<String> - Specifies a list of User Assigned Managed Identity IDs to be assigned to this Fluid Relay Service.
- principal
Id String - The Principal ID for the Service Principal associated with the Identity of this Fluid Relay Server.
- tenant
Id 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
,UserAssigned
andSystemAssigned, UserAssigned
. - identity
Ids string[] - Specifies a list of User Assigned Managed Identity IDs to be assigned to this Fluid Relay Service.
- principal
Id string - The Principal ID for the Service Principal associated with the Identity of this Fluid Relay Server.
- tenant
Id 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
,UserAssigned
andSystemAssigned, 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
,UserAssigned
andSystemAssigned, UserAssigned
. - identity
Ids List<String> - Specifies a list of User Assigned Managed Identity IDs to be assigned to this Fluid Relay Service.
- principal
Id String - The Principal ID for the Service Principal associated with the Identity of this Fluid Relay Server.
- tenant
Id 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
azurerm
Terraform Provider.