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

We recommend using Azure Native.

Azure Classic v5.77.1 published on Monday, May 13, 2024 by Pulumi

azure.arc.ResourceBridgeAppliance

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.77.1 published on Monday, May 13, 2024 by Pulumi

    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",
        },
    });
    
    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=azure.arc.ResourceBridgeApplianceIdentityArgs(
            type="SystemAssigned",
        ),
        tags={
            "hello": "world",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/arc"
    	"github.com/pulumi/pulumi-azure/sdk/v5/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
    	})
    }
    
    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" },
            },
        });
    
    });
    
    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());
    
        }
    }
    
    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
    

    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 string
    The unique name of the resource.
    args ResourceBridgeApplianceArgs
    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 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 string
    The unique name of the resource.
    args ResourceBridgeApplianceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ResourceBridgeApplianceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ResourceBridgeApplianceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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" },
        },
    });
    
    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"),
    	},
    })
    
    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());
    
    resource_bridge_appliance_resource = azure.arc.ResourceBridgeAppliance("resourceBridgeApplianceResource",
        distro="string",
        identity=azure.arc.ResourceBridgeApplianceIdentityArgs(
            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",
        })
    
    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",
        },
    });
    
    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
    

    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

    The ResourceBridgeAppliance resource accepts the following input properties:

    Distro string
    Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
    Identity ResourceBridgeApplianceIdentity
    An identity block as defined below. Changing this forces a new resource to be created.
    InfrastructureProvider 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 string
    Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
    Location string
    The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
    Name string
    The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
    PublicKeyBase64 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 string
    Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
    Identity ResourceBridgeApplianceIdentityArgs
    An identity block as defined below. Changing this forces a new resource to be created.
    InfrastructureProvider 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 string
    Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
    Location string
    The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
    Name string
    The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
    PublicKeyBase64 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 String
    Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
    identity ResourceBridgeApplianceIdentity
    An identity block as defined below. Changing this forces a new resource to be created.
    infrastructureProvider 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 String
    Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
    location String
    The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
    name String
    The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
    publicKeyBase64 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 string
    Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
    identity ResourceBridgeApplianceIdentity
    An identity block as defined below. Changing this forces a new resource to be created.
    infrastructureProvider 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 string
    Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
    location string
    The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
    name string
    The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
    publicKeyBase64 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 str
    Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
    identity ResourceBridgeApplianceIdentityArgs
    An identity block as defined below. Changing this forces a new resource to be created.
    infrastructure_provider 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 str
    Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
    location str
    The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
    name 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 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 String
    Specifies a supported Fabric/Infrastructure for this Arc Resource Bridge Appliance. The possible value is AKSEdge.
    identity Property Map
    An identity block as defined below. Changing this forces a new resource to be created.
    infrastructureProvider 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 String
    Specifies the resource group where the Arc Resource Bridge Appliance exists. Changing this forces a new resource to be created.
    location String
    The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
    name String
    The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
    publicKeyBase64 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)
    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.
    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 ResourceBridgeApplianceIdentity
    An identity block as defined below. Changing this forces a new resource to be created.
    InfrastructureProvider 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 string
    The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
    Name string
    The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
    PublicKeyBase64 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 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 ResourceBridgeApplianceIdentityArgs
    An identity block as defined below. Changing this forces a new resource to be created.
    InfrastructureProvider 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 string
    The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
    Name string
    The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
    PublicKeyBase64 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 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 ResourceBridgeApplianceIdentity
    An identity block as defined below. Changing this forces a new resource to be created.
    infrastructureProvider 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 String
    The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
    name String
    The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
    publicKeyBase64 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 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 ResourceBridgeApplianceIdentity
    An identity block as defined below. Changing this forces a new resource to be created.
    infrastructureProvider 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 string
    The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
    name string
    The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
    publicKeyBase64 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 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 ResourceBridgeApplianceIdentityArgs
    An identity block as defined below. Changing this forces a new resource to be created.
    infrastructure_provider 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 str
    The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
    name 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 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 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 Property Map
    An identity block as defined below. Changing this forces a new resource to be created.
    infrastructureProvider 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 String
    The Azure Region where the Arc Resource Bridge Appliance should exist. Changing this forces a new resource to be created.
    name String
    The Name which should be used for this Arc Resource Bridge Appliance. Changing this forces a new resource to be created.
    publicKeyBase64 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 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 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
    TenantId string
    Type 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
    TenantId string
    type 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
    tenantId String
    type 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
    tenantId string
    type 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
    tenant_id str
    type 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
    tenantId String

    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
    

    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.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.77.1 published on Monday, May 13, 2024 by Pulumi