1. Packages
  2. Azure Classic
  3. API Docs
  4. arc
  5. ResourceBridgeAppliance

We recommend using Azure Native.

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

azure.arc.ResourceBridgeAppliance

Explore with Pulumi AI

Manages an Arc Resource Bridge Appliance.

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 exampleResourceBridgeAppliance = new azure.arc.ResourceBridgeAppliance("example", {
    name: "example-appliance",
    location: example.location,
    resourceGroupName: example.name,
    distro: "AKSEdge",
    infrastructureProvider: "VMWare",
    identity: {
        type: "SystemAssigned",
    },
    tags: {
        hello: "world",
    },
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_resource_bridge_appliance = azure.arc.ResourceBridgeAppliance("example",
    name="example-appliance",
    location=example.location,
    resource_group_name=example.name,
    distro="AKSEdge",
    infrastructure_provider="VMWare",
    identity={
        "type": "SystemAssigned",
    },
    tags={
        "hello": "world",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/arc"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"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 = arc.NewResourceBridgeAppliance(ctx, "example", &arc.ResourceBridgeApplianceArgs{
			Name:                   pulumi.String("example-appliance"),
			Location:               example.Location,
			ResourceGroupName:      example.Name,
			Distro:                 pulumi.String("AKSEdge"),
			InfrastructureProvider: pulumi.String("VMWare"),
			Identity: &arc.ResourceBridgeApplianceIdentityArgs{
				Type: pulumi.String("SystemAssigned"),
			},
			Tags: pulumi.StringMap{
				"hello": pulumi.String("world"),
			},
		})
		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 exampleResourceBridgeAppliance = new Azure.Arc.ResourceBridgeAppliance("example", new()
    {
        Name = "example-appliance",
        Location = example.Location,
        ResourceGroupName = example.Name,
        Distro = "AKSEdge",
        InfrastructureProvider = "VMWare",
        Identity = new Azure.Arc.Inputs.ResourceBridgeApplianceIdentityArgs
        {
            Type = "SystemAssigned",
        },
        Tags = 
        {
            { "hello", "world" },
        },
    });

});
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.arc.ResourceBridgeAppliance;
import com.pulumi.azure.arc.ResourceBridgeApplianceArgs;
import com.pulumi.azure.arc.inputs.ResourceBridgeApplianceIdentityArgs;
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 exampleResourceBridgeAppliance = new ResourceBridgeAppliance("exampleResourceBridgeAppliance", ResourceBridgeApplianceArgs.builder()
            .name("example-appliance")
            .location(example.location())
            .resourceGroupName(example.name())
            .distro("AKSEdge")
            .infrastructureProvider("VMWare")
            .identity(ResourceBridgeApplianceIdentityArgs.builder()
                .type("SystemAssigned")
                .build())
            .tags(Map.of("hello", "world"))
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleResourceBridgeAppliance:
    type: azure:arc:ResourceBridgeAppliance
    name: example
    properties:
      name: example-appliance
      location: ${example.location}
      resourceGroupName: ${example.name}
      distro: AKSEdge
      infrastructureProvider: VMWare
      identity:
        type: SystemAssigned
      tags:
        hello: world
Copy

Create ResourceBridgeAppliance Resource

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

Constructor syntax

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

@overload
def ResourceBridgeAppliance(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            distro: Optional[str] = None,
                            identity: Optional[ResourceBridgeApplianceIdentityArgs] = None,
                            infrastructure_provider: Optional[str] = None,
                            resource_group_name: Optional[str] = None,
                            location: Optional[str] = None,
                            name: Optional[str] = None,
                            public_key_base64: Optional[str] = None,
                            tags: Optional[Mapping[str, str]] = None)
func NewResourceBridgeAppliance(ctx *Context, name string, args ResourceBridgeApplianceArgs, opts ...ResourceOption) (*ResourceBridgeAppliance, error)
public ResourceBridgeAppliance(string name, ResourceBridgeApplianceArgs args, CustomResourceOptions? opts = null)
public ResourceBridgeAppliance(String name, ResourceBridgeApplianceArgs args)
public ResourceBridgeAppliance(String name, ResourceBridgeApplianceArgs args, CustomResourceOptions options)
type: azure:arc:ResourceBridgeAppliance
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. ResourceBridgeApplianceArgs
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. ResourceBridgeApplianceArgs
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. ResourceBridgeApplianceArgs
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. ResourceBridgeApplianceArgs
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. ResourceBridgeApplianceArgs
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 resourceBridgeApplianceResource = new Azure.Arc.ResourceBridgeAppliance("resourceBridgeApplianceResource", new()
{
    Distro = "string",
    Identity = new Azure.Arc.Inputs.ResourceBridgeApplianceIdentityArgs
    {
        Type = "string",
        PrincipalId = "string",
        TenantId = "string",
    },
    InfrastructureProvider = "string",
    ResourceGroupName = "string",
    Location = "string",
    Name = "string",
    PublicKeyBase64 = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := arc.NewResourceBridgeAppliance(ctx, "resourceBridgeApplianceResource", &arc.ResourceBridgeApplianceArgs{
	Distro: pulumi.String("string"),
	Identity: &arc.ResourceBridgeApplianceIdentityArgs{
		Type:        pulumi.String("string"),
		PrincipalId: pulumi.String("string"),
		TenantId:    pulumi.String("string"),
	},
	InfrastructureProvider: pulumi.String("string"),
	ResourceGroupName:      pulumi.String("string"),
	Location:               pulumi.String("string"),
	Name:                   pulumi.String("string"),
	PublicKeyBase64:        pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var resourceBridgeApplianceResource = new ResourceBridgeAppliance("resourceBridgeApplianceResource", ResourceBridgeApplianceArgs.builder()
    .distro("string")
    .identity(ResourceBridgeApplianceIdentityArgs.builder()
        .type("string")
        .principalId("string")
        .tenantId("string")
        .build())
    .infrastructureProvider("string")
    .resourceGroupName("string")
    .location("string")
    .name("string")
    .publicKeyBase64("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
resource_bridge_appliance_resource = azure.arc.ResourceBridgeAppliance("resourceBridgeApplianceResource",
    distro="string",
    identity={
        "type": "string",
        "principal_id": "string",
        "tenant_id": "string",
    },
    infrastructure_provider="string",
    resource_group_name="string",
    location="string",
    name="string",
    public_key_base64="string",
    tags={
        "string": "string",
    })
Copy
const resourceBridgeApplianceResource = new azure.arc.ResourceBridgeAppliance("resourceBridgeApplianceResource", {
    distro: "string",
    identity: {
        type: "string",
        principalId: "string",
        tenantId: "string",
    },
    infrastructureProvider: "string",
    resourceGroupName: "string",
    location: "string",
    name: "string",
    publicKeyBase64: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure:arc:ResourceBridgeAppliance
properties:
    distro: string
    identity:
        principalId: string
        tenantId: string
        type: string
    infrastructureProvider: string
    location: string
    name: string
    publicKeyBase64: string
    resourceGroupName: string
    tags:
        string: string
Copy

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

Distro This property is required. string
Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
Identity
This property is required.
Changes to this property will trigger replacement.
ResourceBridgeApplianceIdentity
An identity block as defined below. Changing this forces a new resource to be created.
InfrastructureProvider
This property is required.
Changes to this property will trigger replacement.
string
The infrastructure provider about the connected Arc Resource Bridge Appliance. Possible values are HCI,SCVMM and VMWare. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
PublicKeyBase64 Changes to this property will trigger replacement. string
The public_key_base64 is an RSA public key in PKCS1 format encoded in base64. Changing this forces a new resource to be created.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to the Arc Resource Bridge Appliance.
Distro This property is required. string
Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
Identity
This property is required.
Changes to this property will trigger replacement.
ResourceBridgeApplianceIdentityArgs
An identity block as defined below. Changing this forces a new resource to be created.
InfrastructureProvider
This property is required.
Changes to this property will trigger replacement.
string
The infrastructure provider about the connected Arc Resource Bridge Appliance. Possible values are HCI,SCVMM and VMWare. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
PublicKeyBase64 Changes to this property will trigger replacement. string
The public_key_base64 is an RSA public key in PKCS1 format encoded in base64. Changing this forces a new resource to be created.
Tags map[string]string
A mapping of tags which should be assigned to the Arc Resource Bridge Appliance.
distro This property is required. String
Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
identity
This property is required.
Changes to this property will trigger replacement.
ResourceBridgeApplianceIdentity
An identity block as defined below. Changing this forces a new resource to be created.
infrastructureProvider
This property is required.
Changes to this property will trigger replacement.
String
The infrastructure provider about the connected Arc Resource Bridge Appliance. Possible values are HCI,SCVMM and VMWare. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
publicKeyBase64 Changes to this property will trigger replacement. String
The public_key_base64 is an RSA public key in PKCS1 format encoded in base64. Changing this forces a new resource to be created.
tags Map<String,String>
A mapping of tags which should be assigned to the Arc Resource Bridge Appliance.
distro This property is required. string
Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
identity
This property is required.
Changes to this property will trigger replacement.
ResourceBridgeApplianceIdentity
An identity block as defined below. Changing this forces a new resource to be created.
infrastructureProvider
This property is required.
Changes to this property will trigger replacement.
string
The infrastructure provider about the connected Arc Resource Bridge Appliance. Possible values are HCI,SCVMM and VMWare. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. string
The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
publicKeyBase64 Changes to this property will trigger replacement. string
The public_key_base64 is an RSA public key in PKCS1 format encoded in base64. Changing this forces a new resource to be created.
tags {[key: string]: string}
A mapping of tags which should be assigned to the Arc Resource Bridge Appliance.
distro This property is required. str
Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
identity
This property is required.
Changes to this property will trigger replacement.
ResourceBridgeApplianceIdentityArgs
An identity block as defined below. Changing this forces a new resource to be created.
infrastructure_provider
This property is required.
Changes to this property will trigger replacement.
str
The infrastructure provider about the connected Arc Resource Bridge Appliance. Possible values are HCI,SCVMM and VMWare. Changing this forces a new resource to be created.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. str
The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
public_key_base64 Changes to this property will trigger replacement. str
The public_key_base64 is an RSA public key in PKCS1 format encoded in base64. Changing this forces a new resource to be created.
tags Mapping[str, str]
A mapping of tags which should be assigned to the Arc Resource Bridge Appliance.
distro This property is required. String
Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
identity
This property is required.
Changes to this property will trigger replacement.
Property Map
An identity block as defined below. Changing this forces a new resource to be created.
infrastructureProvider
This property is required.
Changes to this property will trigger replacement.
String
The infrastructure provider about the connected Arc Resource Bridge Appliance. Possible values are HCI,SCVMM and VMWare. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
publicKeyBase64 Changes to this property will trigger replacement. String
The public_key_base64 is an RSA public key in PKCS1 format encoded in base64. Changing this forces a new resource to be created.
tags Map<String>
A mapping of tags which should be assigned to the Arc Resource Bridge Appliance.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ResourceBridgeAppliance Resource

Get an existing ResourceBridgeAppliance 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?: ResourceBridgeApplianceState, opts?: CustomResourceOptions): ResourceBridgeAppliance
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        distro: Optional[str] = None,
        identity: Optional[ResourceBridgeApplianceIdentityArgs] = None,
        infrastructure_provider: Optional[str] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        public_key_base64: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None) -> ResourceBridgeAppliance
func GetResourceBridgeAppliance(ctx *Context, name string, id IDInput, state *ResourceBridgeApplianceState, opts ...ResourceOption) (*ResourceBridgeAppliance, error)
public static ResourceBridgeAppliance Get(string name, Input<string> id, ResourceBridgeApplianceState? state, CustomResourceOptions? opts = null)
public static ResourceBridgeAppliance get(String name, Output<String> id, ResourceBridgeApplianceState state, CustomResourceOptions options)
resources:  _:    type: azure:arc:ResourceBridgeAppliance    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:
Distro string
Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
Identity Changes to this property will trigger replacement. ResourceBridgeApplianceIdentity
An identity block as defined below. Changing this forces a new resource to be created.
InfrastructureProvider Changes to this property will trigger replacement. string
The infrastructure provider about the connected Arc Resource Bridge Appliance. Possible values are HCI,SCVMM and VMWare. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
PublicKeyBase64 Changes to this property will trigger replacement. string
The public_key_base64 is an RSA public key in PKCS1 format encoded in base64. Changing this forces a new resource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
Tags Dictionary<string, string>
A mapping of tags which should be assigned to the Arc Resource Bridge Appliance.
Distro string
Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
Identity Changes to this property will trigger replacement. ResourceBridgeApplianceIdentityArgs
An identity block as defined below. Changing this forces a new resource to be created.
InfrastructureProvider Changes to this property will trigger replacement. string
The infrastructure provider about the connected Arc Resource Bridge Appliance. Possible values are HCI,SCVMM and VMWare. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
PublicKeyBase64 Changes to this property will trigger replacement. string
The public_key_base64 is an RSA public key in PKCS1 format encoded in base64. Changing this forces a new resource to be created.
ResourceGroupName Changes to this property will trigger replacement. string
Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
Tags map[string]string
A mapping of tags which should be assigned to the Arc Resource Bridge Appliance.
distro String
Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
identity Changes to this property will trigger replacement. ResourceBridgeApplianceIdentity
An identity block as defined below. Changing this forces a new resource to be created.
infrastructureProvider Changes to this property will trigger replacement. String
The infrastructure provider about the connected Arc Resource Bridge Appliance. Possible values are HCI,SCVMM and VMWare. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
publicKeyBase64 Changes to this property will trigger replacement. String
The public_key_base64 is an RSA public key in PKCS1 format encoded in base64. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. String
Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
tags Map<String,String>
A mapping of tags which should be assigned to the Arc Resource Bridge Appliance.
distro string
Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
identity Changes to this property will trigger replacement. ResourceBridgeApplianceIdentity
An identity block as defined below. Changing this forces a new resource to be created.
infrastructureProvider Changes to this property will trigger replacement. string
The infrastructure provider about the connected Arc Resource Bridge Appliance. Possible values are HCI,SCVMM and VMWare. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. string
The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
publicKeyBase64 Changes to this property will trigger replacement. string
The public_key_base64 is an RSA public key in PKCS1 format encoded in base64. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. string
Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
tags {[key: string]: string}
A mapping of tags which should be assigned to the Arc Resource Bridge Appliance.
distro str
Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
identity Changes to this property will trigger replacement. ResourceBridgeApplianceIdentityArgs
An identity block as defined below. Changing this forces a new resource to be created.
infrastructure_provider Changes to this property will trigger replacement. str
The infrastructure provider about the connected Arc Resource Bridge Appliance. Possible values are HCI,SCVMM and VMWare. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. str
The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
public_key_base64 Changes to this property will trigger replacement. str
The public_key_base64 is an RSA public key in PKCS1 format encoded in base64. Changing this forces a new resource to be created.
resource_group_name Changes to this property will trigger replacement. str
Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
tags Mapping[str, str]
A mapping of tags which should be assigned to the Arc Resource Bridge Appliance.
distro String
Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
identity Changes to this property will trigger replacement. Property Map
An identity block as defined below. Changing this forces a new resource to be created.
infrastructureProvider Changes to this property will trigger replacement. String
The infrastructure provider about the connected Arc Resource Bridge Appliance. Possible values are HCI,SCVMM and VMWare. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
publicKeyBase64 Changes to this property will trigger replacement. String
The public_key_base64 is an RSA public key in PKCS1 format encoded in base64. Changing this forces a new resource to be created.
resourceGroupName Changes to this property will trigger replacement. String
Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
tags Map<String>
A mapping of tags which should be assigned to the Arc Resource Bridge Appliance.

Supporting Types

ResourceBridgeApplianceIdentity
, ResourceBridgeApplianceIdentityArgs

Type
This property is required.
Changes to this property will trigger replacement.
string
Specifies the type of Managed Service Identity that should be configured on this Arc Resource Bridge Appliance. The only possible value is SystemAssigned. Changing this forces a new resource to be created.
PrincipalId string
The Principal ID associated with this Managed Service Identity.
TenantId string
The Tenant ID associated with this Managed Service Identity.
Type
This property is required.
Changes to this property will trigger replacement.
string
Specifies the type of Managed Service Identity that should be configured on this Arc Resource Bridge Appliance. The only possible value is SystemAssigned. Changing this forces a new resource to be created.
PrincipalId string
The Principal ID associated with this Managed Service Identity.
TenantId string
The Tenant ID associated with this Managed Service Identity.
type
This property is required.
Changes to this property will trigger replacement.
String
Specifies the type of Managed Service Identity that should be configured on this Arc Resource Bridge Appliance. The only possible value is SystemAssigned. Changing this forces a new resource to be created.
principalId String
The Principal ID associated with this Managed Service Identity.
tenantId String
The Tenant ID associated with this Managed Service Identity.
type
This property is required.
Changes to this property will trigger replacement.
string
Specifies the type of Managed Service Identity that should be configured on this Arc Resource Bridge Appliance. The only possible value is SystemAssigned. Changing this forces a new resource to be created.
principalId string
The Principal ID associated with this Managed Service Identity.
tenantId string
The Tenant ID associated with this Managed Service Identity.
type
This property is required.
Changes to this property will trigger replacement.
str
Specifies the type of Managed Service Identity that should be configured on this Arc Resource Bridge Appliance. The only possible value is SystemAssigned. Changing this forces a new resource to be created.
principal_id str
The Principal ID associated with this Managed Service Identity.
tenant_id str
The Tenant ID associated with this Managed Service Identity.
type
This property is required.
Changes to this property will trigger replacement.
String
Specifies the type of Managed Service Identity that should be configured on this Arc Resource Bridge Appliance. The only possible value is SystemAssigned. Changing this forces a new resource to be created.
principalId String
The Principal ID associated with this Managed Service Identity.
tenantId String
The Tenant ID associated with this Managed Service Identity.

Import

Arc Resource Bridge Appliance can be imported using the resource id, e.g.

$ pulumi import azure:arc/resourceBridgeAppliance:ResourceBridgeAppliance example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.ResourceConnector/appliances/appliancesExample
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.