We recommend using Azure Native.
azure.compute.BastionHost
Explore with Pulumi AI
Manages a Bastion Host.
Example Usage
This example deploys an Azure Bastion Host Instance to a target virtual network.
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 exampleVirtualNetwork = new azure.network.VirtualNetwork("example", {
    name: "examplevnet",
    addressSpaces: ["192.168.1.0/24"],
    location: example.location,
    resourceGroupName: example.name,
});
const exampleSubnet = new azure.network.Subnet("example", {
    name: "AzureBastionSubnet",
    resourceGroupName: example.name,
    virtualNetworkName: exampleVirtualNetwork.name,
    addressPrefixes: ["192.168.1.224/27"],
});
const examplePublicIp = new azure.network.PublicIp("example", {
    name: "examplepip",
    location: example.location,
    resourceGroupName: example.name,
    allocationMethod: "Static",
    sku: "Standard",
});
const exampleBastionHost = new azure.compute.BastionHost("example", {
    name: "examplebastion",
    location: example.location,
    resourceGroupName: example.name,
    ipConfiguration: {
        name: "configuration",
        subnetId: exampleSubnet.id,
        publicIpAddressId: examplePublicIp.id,
    },
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_virtual_network = azure.network.VirtualNetwork("example",
    name="examplevnet",
    address_spaces=["192.168.1.0/24"],
    location=example.location,
    resource_group_name=example.name)
example_subnet = azure.network.Subnet("example",
    name="AzureBastionSubnet",
    resource_group_name=example.name,
    virtual_network_name=example_virtual_network.name,
    address_prefixes=["192.168.1.224/27"])
example_public_ip = azure.network.PublicIp("example",
    name="examplepip",
    location=example.location,
    resource_group_name=example.name,
    allocation_method="Static",
    sku="Standard")
example_bastion_host = azure.compute.BastionHost("example",
    name="examplebastion",
    location=example.location,
    resource_group_name=example.name,
    ip_configuration={
        "name": "configuration",
        "subnet_id": example_subnet.id,
        "public_ip_address_id": example_public_ip.id,
    })
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/compute"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/network"
	"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
		}
		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "example", &network.VirtualNetworkArgs{
			Name: pulumi.String("examplevnet"),
			AddressSpaces: pulumi.StringArray{
				pulumi.String("192.168.1.0/24"),
			},
			Location:          example.Location,
			ResourceGroupName: example.Name,
		})
		if err != nil {
			return err
		}
		exampleSubnet, err := network.NewSubnet(ctx, "example", &network.SubnetArgs{
			Name:               pulumi.String("AzureBastionSubnet"),
			ResourceGroupName:  example.Name,
			VirtualNetworkName: exampleVirtualNetwork.Name,
			AddressPrefixes: pulumi.StringArray{
				pulumi.String("192.168.1.224/27"),
			},
		})
		if err != nil {
			return err
		}
		examplePublicIp, err := network.NewPublicIp(ctx, "example", &network.PublicIpArgs{
			Name:              pulumi.String("examplepip"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			AllocationMethod:  pulumi.String("Static"),
			Sku:               pulumi.String("Standard"),
		})
		if err != nil {
			return err
		}
		_, err = compute.NewBastionHost(ctx, "example", &compute.BastionHostArgs{
			Name:              pulumi.String("examplebastion"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			IpConfiguration: &compute.BastionHostIpConfigurationArgs{
				Name:              pulumi.String("configuration"),
				SubnetId:          exampleSubnet.ID(),
				PublicIpAddressId: examplePublicIp.ID(),
			},
		})
		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 exampleVirtualNetwork = new Azure.Network.VirtualNetwork("example", new()
    {
        Name = "examplevnet",
        AddressSpaces = new[]
        {
            "192.168.1.0/24",
        },
        Location = example.Location,
        ResourceGroupName = example.Name,
    });
    var exampleSubnet = new Azure.Network.Subnet("example", new()
    {
        Name = "AzureBastionSubnet",
        ResourceGroupName = example.Name,
        VirtualNetworkName = exampleVirtualNetwork.Name,
        AddressPrefixes = new[]
        {
            "192.168.1.224/27",
        },
    });
    var examplePublicIp = new Azure.Network.PublicIp("example", new()
    {
        Name = "examplepip",
        Location = example.Location,
        ResourceGroupName = example.Name,
        AllocationMethod = "Static",
        Sku = "Standard",
    });
    var exampleBastionHost = new Azure.Compute.BastionHost("example", new()
    {
        Name = "examplebastion",
        Location = example.Location,
        ResourceGroupName = example.Name,
        IpConfiguration = new Azure.Compute.Inputs.BastionHostIpConfigurationArgs
        {
            Name = "configuration",
            SubnetId = exampleSubnet.Id,
            PublicIpAddressId = examplePublicIp.Id,
        },
    });
});
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.network.VirtualNetwork;
import com.pulumi.azure.network.VirtualNetworkArgs;
import com.pulumi.azure.network.Subnet;
import com.pulumi.azure.network.SubnetArgs;
import com.pulumi.azure.network.PublicIp;
import com.pulumi.azure.network.PublicIpArgs;
import com.pulumi.azure.compute.BastionHost;
import com.pulumi.azure.compute.BastionHostArgs;
import com.pulumi.azure.compute.inputs.BastionHostIpConfigurationArgs;
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 exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
            .name("examplevnet")
            .addressSpaces("192.168.1.0/24")
            .location(example.location())
            .resourceGroupName(example.name())
            .build());
        var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
            .name("AzureBastionSubnet")
            .resourceGroupName(example.name())
            .virtualNetworkName(exampleVirtualNetwork.name())
            .addressPrefixes("192.168.1.224/27")
            .build());
        var examplePublicIp = new PublicIp("examplePublicIp", PublicIpArgs.builder()
            .name("examplepip")
            .location(example.location())
            .resourceGroupName(example.name())
            .allocationMethod("Static")
            .sku("Standard")
            .build());
        var exampleBastionHost = new BastionHost("exampleBastionHost", BastionHostArgs.builder()
            .name("examplebastion")
            .location(example.location())
            .resourceGroupName(example.name())
            .ipConfiguration(BastionHostIpConfigurationArgs.builder()
                .name("configuration")
                .subnetId(exampleSubnet.id())
                .publicIpAddressId(examplePublicIp.id())
                .build())
            .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleVirtualNetwork:
    type: azure:network:VirtualNetwork
    name: example
    properties:
      name: examplevnet
      addressSpaces:
        - 192.168.1.0/24
      location: ${example.location}
      resourceGroupName: ${example.name}
  exampleSubnet:
    type: azure:network:Subnet
    name: example
    properties:
      name: AzureBastionSubnet
      resourceGroupName: ${example.name}
      virtualNetworkName: ${exampleVirtualNetwork.name}
      addressPrefixes:
        - 192.168.1.224/27
  examplePublicIp:
    type: azure:network:PublicIp
    name: example
    properties:
      name: examplepip
      location: ${example.location}
      resourceGroupName: ${example.name}
      allocationMethod: Static
      sku: Standard
  exampleBastionHost:
    type: azure:compute:BastionHost
    name: example
    properties:
      name: examplebastion
      location: ${example.location}
      resourceGroupName: ${example.name}
      ipConfiguration:
        name: configuration
        subnetId: ${exampleSubnet.id}
        publicIpAddressId: ${examplePublicIp.id}
Create BastionHost Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BastionHost(name: string, args: BastionHostArgs, opts?: CustomResourceOptions);@overload
def BastionHost(resource_name: str,
                args: BastionHostArgs,
                opts: Optional[ResourceOptions] = None)
@overload
def BastionHost(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                resource_group_name: Optional[str] = None,
                scale_units: Optional[int] = None,
                session_recording_enabled: Optional[bool] = None,
                ip_connect_enabled: Optional[bool] = None,
                kerberos_enabled: Optional[bool] = None,
                location: Optional[str] = None,
                name: Optional[str] = None,
                ip_configuration: Optional[BastionHostIpConfigurationArgs] = None,
                copy_paste_enabled: Optional[bool] = None,
                file_copy_enabled: Optional[bool] = None,
                shareable_link_enabled: Optional[bool] = None,
                sku: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None,
                tunneling_enabled: Optional[bool] = None,
                virtual_network_id: Optional[str] = None,
                zones: Optional[Sequence[str]] = None)func NewBastionHost(ctx *Context, name string, args BastionHostArgs, opts ...ResourceOption) (*BastionHost, error)public BastionHost(string name, BastionHostArgs args, CustomResourceOptions? opts = null)
public BastionHost(String name, BastionHostArgs args)
public BastionHost(String name, BastionHostArgs args, CustomResourceOptions options)
type: azure:compute:BastionHost
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 BastionHostArgs
- 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 BastionHostArgs
- 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 BastionHostArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BastionHostArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BastionHostArgs
- 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 bastionHostResource = new Azure.Compute.BastionHost("bastionHostResource", new()
{
    ResourceGroupName = "string",
    ScaleUnits = 0,
    SessionRecordingEnabled = false,
    IpConnectEnabled = false,
    KerberosEnabled = false,
    Location = "string",
    Name = "string",
    IpConfiguration = new Azure.Compute.Inputs.BastionHostIpConfigurationArgs
    {
        Name = "string",
        PublicIpAddressId = "string",
        SubnetId = "string",
    },
    CopyPasteEnabled = false,
    FileCopyEnabled = false,
    ShareableLinkEnabled = false,
    Sku = "string",
    Tags = 
    {
        { "string", "string" },
    },
    TunnelingEnabled = false,
    VirtualNetworkId = "string",
    Zones = new[]
    {
        "string",
    },
});
example, err := compute.NewBastionHost(ctx, "bastionHostResource", &compute.BastionHostArgs{
	ResourceGroupName:       pulumi.String("string"),
	ScaleUnits:              pulumi.Int(0),
	SessionRecordingEnabled: pulumi.Bool(false),
	IpConnectEnabled:        pulumi.Bool(false),
	KerberosEnabled:         pulumi.Bool(false),
	Location:                pulumi.String("string"),
	Name:                    pulumi.String("string"),
	IpConfiguration: &compute.BastionHostIpConfigurationArgs{
		Name:              pulumi.String("string"),
		PublicIpAddressId: pulumi.String("string"),
		SubnetId:          pulumi.String("string"),
	},
	CopyPasteEnabled:     pulumi.Bool(false),
	FileCopyEnabled:      pulumi.Bool(false),
	ShareableLinkEnabled: pulumi.Bool(false),
	Sku:                  pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	TunnelingEnabled: pulumi.Bool(false),
	VirtualNetworkId: pulumi.String("string"),
	Zones: pulumi.StringArray{
		pulumi.String("string"),
	},
})
var bastionHostResource = new BastionHost("bastionHostResource", BastionHostArgs.builder()
    .resourceGroupName("string")
    .scaleUnits(0)
    .sessionRecordingEnabled(false)
    .ipConnectEnabled(false)
    .kerberosEnabled(false)
    .location("string")
    .name("string")
    .ipConfiguration(BastionHostIpConfigurationArgs.builder()
        .name("string")
        .publicIpAddressId("string")
        .subnetId("string")
        .build())
    .copyPasteEnabled(false)
    .fileCopyEnabled(false)
    .shareableLinkEnabled(false)
    .sku("string")
    .tags(Map.of("string", "string"))
    .tunnelingEnabled(false)
    .virtualNetworkId("string")
    .zones("string")
    .build());
bastion_host_resource = azure.compute.BastionHost("bastionHostResource",
    resource_group_name="string",
    scale_units=0,
    session_recording_enabled=False,
    ip_connect_enabled=False,
    kerberos_enabled=False,
    location="string",
    name="string",
    ip_configuration={
        "name": "string",
        "public_ip_address_id": "string",
        "subnet_id": "string",
    },
    copy_paste_enabled=False,
    file_copy_enabled=False,
    shareable_link_enabled=False,
    sku="string",
    tags={
        "string": "string",
    },
    tunneling_enabled=False,
    virtual_network_id="string",
    zones=["string"])
const bastionHostResource = new azure.compute.BastionHost("bastionHostResource", {
    resourceGroupName: "string",
    scaleUnits: 0,
    sessionRecordingEnabled: false,
    ipConnectEnabled: false,
    kerberosEnabled: false,
    location: "string",
    name: "string",
    ipConfiguration: {
        name: "string",
        publicIpAddressId: "string",
        subnetId: "string",
    },
    copyPasteEnabled: false,
    fileCopyEnabled: false,
    shareableLinkEnabled: false,
    sku: "string",
    tags: {
        string: "string",
    },
    tunnelingEnabled: false,
    virtualNetworkId: "string",
    zones: ["string"],
});
type: azure:compute:BastionHost
properties:
    copyPasteEnabled: false
    fileCopyEnabled: false
    ipConfiguration:
        name: string
        publicIpAddressId: string
        subnetId: string
    ipConnectEnabled: false
    kerberosEnabled: false
    location: string
    name: string
    resourceGroupName: string
    scaleUnits: 0
    sessionRecordingEnabled: false
    shareableLinkEnabled: false
    sku: string
    tags:
        string: string
    tunnelingEnabled: false
    virtualNetworkId: string
    zones:
        - string
BastionHost 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 BastionHost resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group in which to create the Bastion Host. Changing this forces a new resource to be created.
- CopyPaste boolEnabled 
- Is Copy/Paste feature enabled for the Bastion Host. Defaults to true.
- FileCopy boolEnabled 
- Is File Copy feature enabled for the Bastion Host. Defaults to - false.- Note: - file_copy_enabledis only supported when- skuis- Standardor- Premium.
- IpConfiguration BastionHost Ip Configuration 
- A ip_configurationblock as defined below. Changing this forces a new resource to be created.
- IpConnect boolEnabled 
- Is IP Connect feature enabled for the Bastion Host. Defaults to - false.- Note: - ip_connect_enabledis only supported when- skuis- Standardor- Premium.
- KerberosEnabled bool
- Is Kerberos authentication feature enabled for the Bastion Host. Defaults to - false.- Note: - kerberos_enabledis only supported when- skuis- Standardor- Premium.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Review Azure Bastion Host FAQ for supported locations.
- Name string
- Specifies the name of the Bastion Host. Changing this forces a new resource to be created.
- ScaleUnits int
- The number of scale units with which to provision the Bastion Host. Possible values are between - 2and- 50. Defaults to- 2.- Note: - scale_unitsonly can be changed when- skuis- Standardor- Premium.- scale_unitsis always- 2when- skuis- Basic.
- SessionRecording boolEnabled 
- Is Session Recording feature enabled for the Bastion Host. Defaults to - false.- Note: - session_recording_enabledis only supported when- skuis- Premium.
- bool
- Is Shareable Link feature enabled for the Bastion Host. Defaults to - false.- Note: - shareable_link_enabledis only supported when- skuis- Standardor- Premium.
- Sku string
- The SKU of the Bastion Host. Accepted values are - Developer,- Basic,- Standardand- Premium. Defaults to- Basic.- Note Downgrading the SKU will force a new resource to be created. 
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- TunnelingEnabled bool
- Is Tunneling feature enabled for the Bastion Host. Defaults to - false.- Note: - tunneling_enabledis only supported when- skuis- Standardor- Premium.
- VirtualNetwork stringId 
- The ID of the Virtual Network for the Developer Bastion Host. Changing this forces a new resource to be created.
- Zones List<string>
- Specifies a list of Availability Zones in which this Public Bastion Host should be located. Changing this forces a new resource to be created.
- ResourceGroup stringName 
- The name of the resource group in which to create the Bastion Host. Changing this forces a new resource to be created.
- CopyPaste boolEnabled 
- Is Copy/Paste feature enabled for the Bastion Host. Defaults to true.
- FileCopy boolEnabled 
- Is File Copy feature enabled for the Bastion Host. Defaults to - false.- Note: - file_copy_enabledis only supported when- skuis- Standardor- Premium.
- IpConfiguration BastionHost Ip Configuration Args 
- A ip_configurationblock as defined below. Changing this forces a new resource to be created.
- IpConnect boolEnabled 
- Is IP Connect feature enabled for the Bastion Host. Defaults to - false.- Note: - ip_connect_enabledis only supported when- skuis- Standardor- Premium.
- KerberosEnabled bool
- Is Kerberos authentication feature enabled for the Bastion Host. Defaults to - false.- Note: - kerberos_enabledis only supported when- skuis- Standardor- Premium.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Review Azure Bastion Host FAQ for supported locations.
- Name string
- Specifies the name of the Bastion Host. Changing this forces a new resource to be created.
- ScaleUnits int
- The number of scale units with which to provision the Bastion Host. Possible values are between - 2and- 50. Defaults to- 2.- Note: - scale_unitsonly can be changed when- skuis- Standardor- Premium.- scale_unitsis always- 2when- skuis- Basic.
- SessionRecording boolEnabled 
- Is Session Recording feature enabled for the Bastion Host. Defaults to - false.- Note: - session_recording_enabledis only supported when- skuis- Premium.
- bool
- Is Shareable Link feature enabled for the Bastion Host. Defaults to - false.- Note: - shareable_link_enabledis only supported when- skuis- Standardor- Premium.
- Sku string
- The SKU of the Bastion Host. Accepted values are - Developer,- Basic,- Standardand- Premium. Defaults to- Basic.- Note Downgrading the SKU will force a new resource to be created. 
- map[string]string
- A mapping of tags to assign to the resource.
- TunnelingEnabled bool
- Is Tunneling feature enabled for the Bastion Host. Defaults to - false.- Note: - tunneling_enabledis only supported when- skuis- Standardor- Premium.
- VirtualNetwork stringId 
- The ID of the Virtual Network for the Developer Bastion Host. Changing this forces a new resource to be created.
- Zones []string
- Specifies a list of Availability Zones in which this Public Bastion Host should be located. Changing this forces a new resource to be created.
- resourceGroup StringName 
- The name of the resource group in which to create the Bastion Host. Changing this forces a new resource to be created.
- copyPaste BooleanEnabled 
- Is Copy/Paste feature enabled for the Bastion Host. Defaults to true.
- fileCopy BooleanEnabled 
- Is File Copy feature enabled for the Bastion Host. Defaults to - false.- Note: - file_copy_enabledis only supported when- skuis- Standardor- Premium.
- ipConfiguration BastionHost Ip Configuration 
- A ip_configurationblock as defined below. Changing this forces a new resource to be created.
- ipConnect BooleanEnabled 
- Is IP Connect feature enabled for the Bastion Host. Defaults to - false.- Note: - ip_connect_enabledis only supported when- skuis- Standardor- Premium.
- kerberosEnabled Boolean
- Is Kerberos authentication feature enabled for the Bastion Host. Defaults to - false.- Note: - kerberos_enabledis only supported when- skuis- Standardor- Premium.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Review Azure Bastion Host FAQ for supported locations.
- name String
- Specifies the name of the Bastion Host. Changing this forces a new resource to be created.
- scaleUnits Integer
- The number of scale units with which to provision the Bastion Host. Possible values are between - 2and- 50. Defaults to- 2.- Note: - scale_unitsonly can be changed when- skuis- Standardor- Premium.- scale_unitsis always- 2when- skuis- Basic.
- sessionRecording BooleanEnabled 
- Is Session Recording feature enabled for the Bastion Host. Defaults to - false.- Note: - session_recording_enabledis only supported when- skuis- Premium.
- Boolean
- Is Shareable Link feature enabled for the Bastion Host. Defaults to - false.- Note: - shareable_link_enabledis only supported when- skuis- Standardor- Premium.
- sku String
- The SKU of the Bastion Host. Accepted values are - Developer,- Basic,- Standardand- Premium. Defaults to- Basic.- Note Downgrading the SKU will force a new resource to be created. 
- Map<String,String>
- A mapping of tags to assign to the resource.
- tunnelingEnabled Boolean
- Is Tunneling feature enabled for the Bastion Host. Defaults to - false.- Note: - tunneling_enabledis only supported when- skuis- Standardor- Premium.
- virtualNetwork StringId 
- The ID of the Virtual Network for the Developer Bastion Host. Changing this forces a new resource to be created.
- zones List<String>
- Specifies a list of Availability Zones in which this Public Bastion Host should be located. Changing this forces a new resource to be created.
- resourceGroup stringName 
- The name of the resource group in which to create the Bastion Host. Changing this forces a new resource to be created.
- copyPaste booleanEnabled 
- Is Copy/Paste feature enabled for the Bastion Host. Defaults to true.
- fileCopy booleanEnabled 
- Is File Copy feature enabled for the Bastion Host. Defaults to - false.- Note: - file_copy_enabledis only supported when- skuis- Standardor- Premium.
- ipConfiguration BastionHost Ip Configuration 
- A ip_configurationblock as defined below. Changing this forces a new resource to be created.
- ipConnect booleanEnabled 
- Is IP Connect feature enabled for the Bastion Host. Defaults to - false.- Note: - ip_connect_enabledis only supported when- skuis- Standardor- Premium.
- kerberosEnabled boolean
- Is Kerberos authentication feature enabled for the Bastion Host. Defaults to - false.- Note: - kerberos_enabledis only supported when- skuis- Standardor- Premium.
- location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Review Azure Bastion Host FAQ for supported locations.
- name string
- Specifies the name of the Bastion Host. Changing this forces a new resource to be created.
- scaleUnits number
- The number of scale units with which to provision the Bastion Host. Possible values are between - 2and- 50. Defaults to- 2.- Note: - scale_unitsonly can be changed when- skuis- Standardor- Premium.- scale_unitsis always- 2when- skuis- Basic.
- sessionRecording booleanEnabled 
- Is Session Recording feature enabled for the Bastion Host. Defaults to - false.- Note: - session_recording_enabledis only supported when- skuis- Premium.
- boolean
- Is Shareable Link feature enabled for the Bastion Host. Defaults to - false.- Note: - shareable_link_enabledis only supported when- skuis- Standardor- Premium.
- sku string
- The SKU of the Bastion Host. Accepted values are - Developer,- Basic,- Standardand- Premium. Defaults to- Basic.- Note Downgrading the SKU will force a new resource to be created. 
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- tunnelingEnabled boolean
- Is Tunneling feature enabled for the Bastion Host. Defaults to - false.- Note: - tunneling_enabledis only supported when- skuis- Standardor- Premium.
- virtualNetwork stringId 
- The ID of the Virtual Network for the Developer Bastion Host. Changing this forces a new resource to be created.
- zones string[]
- Specifies a list of Availability Zones in which this Public Bastion Host should be located. Changing this forces a new resource to be created.
- resource_group_ strname 
- The name of the resource group in which to create the Bastion Host. Changing this forces a new resource to be created.
- copy_paste_ boolenabled 
- Is Copy/Paste feature enabled for the Bastion Host. Defaults to true.
- file_copy_ boolenabled 
- Is File Copy feature enabled for the Bastion Host. Defaults to - false.- Note: - file_copy_enabledis only supported when- skuis- Standardor- Premium.
- ip_configuration BastionHost Ip Configuration Args 
- A ip_configurationblock as defined below. Changing this forces a new resource to be created.
- ip_connect_ boolenabled 
- Is IP Connect feature enabled for the Bastion Host. Defaults to - false.- Note: - ip_connect_enabledis only supported when- skuis- Standardor- Premium.
- kerberos_enabled bool
- Is Kerberos authentication feature enabled for the Bastion Host. Defaults to - false.- Note: - kerberos_enabledis only supported when- skuis- Standardor- Premium.
- location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Review Azure Bastion Host FAQ for supported locations.
- name str
- Specifies the name of the Bastion Host. Changing this forces a new resource to be created.
- scale_units int
- The number of scale units with which to provision the Bastion Host. Possible values are between - 2and- 50. Defaults to- 2.- Note: - scale_unitsonly can be changed when- skuis- Standardor- Premium.- scale_unitsis always- 2when- skuis- Basic.
- session_recording_ boolenabled 
- Is Session Recording feature enabled for the Bastion Host. Defaults to - false.- Note: - session_recording_enabledis only supported when- skuis- Premium.
- bool
- Is Shareable Link feature enabled for the Bastion Host. Defaults to - false.- Note: - shareable_link_enabledis only supported when- skuis- Standardor- Premium.
- sku str
- The SKU of the Bastion Host. Accepted values are - Developer,- Basic,- Standardand- Premium. Defaults to- Basic.- Note Downgrading the SKU will force a new resource to be created. 
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- tunneling_enabled bool
- Is Tunneling feature enabled for the Bastion Host. Defaults to - false.- Note: - tunneling_enabledis only supported when- skuis- Standardor- Premium.
- virtual_network_ strid 
- The ID of the Virtual Network for the Developer Bastion Host. Changing this forces a new resource to be created.
- zones Sequence[str]
- Specifies a list of Availability Zones in which this Public Bastion Host should be located. Changing this forces a new resource to be created.
- resourceGroup StringName 
- The name of the resource group in which to create the Bastion Host. Changing this forces a new resource to be created.
- copyPaste BooleanEnabled 
- Is Copy/Paste feature enabled for the Bastion Host. Defaults to true.
- fileCopy BooleanEnabled 
- Is File Copy feature enabled for the Bastion Host. Defaults to - false.- Note: - file_copy_enabledis only supported when- skuis- Standardor- Premium.
- ipConfiguration Property Map
- A ip_configurationblock as defined below. Changing this forces a new resource to be created.
- ipConnect BooleanEnabled 
- Is IP Connect feature enabled for the Bastion Host. Defaults to - false.- Note: - ip_connect_enabledis only supported when- skuis- Standardor- Premium.
- kerberosEnabled Boolean
- Is Kerberos authentication feature enabled for the Bastion Host. Defaults to - false.- Note: - kerberos_enabledis only supported when- skuis- Standardor- Premium.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Review Azure Bastion Host FAQ for supported locations.
- name String
- Specifies the name of the Bastion Host. Changing this forces a new resource to be created.
- scaleUnits Number
- The number of scale units with which to provision the Bastion Host. Possible values are between - 2and- 50. Defaults to- 2.- Note: - scale_unitsonly can be changed when- skuis- Standardor- Premium.- scale_unitsis always- 2when- skuis- Basic.
- sessionRecording BooleanEnabled 
- Is Session Recording feature enabled for the Bastion Host. Defaults to - false.- Note: - session_recording_enabledis only supported when- skuis- Premium.
- Boolean
- Is Shareable Link feature enabled for the Bastion Host. Defaults to - false.- Note: - shareable_link_enabledis only supported when- skuis- Standardor- Premium.
- sku String
- The SKU of the Bastion Host. Accepted values are - Developer,- Basic,- Standardand- Premium. Defaults to- Basic.- Note Downgrading the SKU will force a new resource to be created. 
- Map<String>
- A mapping of tags to assign to the resource.
- tunnelingEnabled Boolean
- Is Tunneling feature enabled for the Bastion Host. Defaults to - false.- Note: - tunneling_enabledis only supported when- skuis- Standardor- Premium.
- virtualNetwork StringId 
- The ID of the Virtual Network for the Developer Bastion Host. Changing this forces a new resource to be created.
- zones List<String>
- Specifies a list of Availability Zones in which this Public Bastion Host should be located. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the BastionHost resource produces the following output properties:
Look up Existing BastionHost Resource
Get an existing BastionHost 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?: BastionHostState, opts?: CustomResourceOptions): BastionHost@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        copy_paste_enabled: Optional[bool] = None,
        dns_name: Optional[str] = None,
        file_copy_enabled: Optional[bool] = None,
        ip_configuration: Optional[BastionHostIpConfigurationArgs] = None,
        ip_connect_enabled: Optional[bool] = None,
        kerberos_enabled: Optional[bool] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        scale_units: Optional[int] = None,
        session_recording_enabled: Optional[bool] = None,
        shareable_link_enabled: Optional[bool] = None,
        sku: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tunneling_enabled: Optional[bool] = None,
        virtual_network_id: Optional[str] = None,
        zones: Optional[Sequence[str]] = None) -> BastionHostfunc GetBastionHost(ctx *Context, name string, id IDInput, state *BastionHostState, opts ...ResourceOption) (*BastionHost, error)public static BastionHost Get(string name, Input<string> id, BastionHostState? state, CustomResourceOptions? opts = null)public static BastionHost get(String name, Output<String> id, BastionHostState state, CustomResourceOptions options)resources:  _:    type: azure:compute:BastionHost    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- CopyPaste boolEnabled 
- Is Copy/Paste feature enabled for the Bastion Host. Defaults to true.
- DnsName string
- The FQDN for the Bastion Host.
- FileCopy boolEnabled 
- Is File Copy feature enabled for the Bastion Host. Defaults to - false.- Note: - file_copy_enabledis only supported when- skuis- Standardor- Premium.
- IpConfiguration BastionHost Ip Configuration 
- A ip_configurationblock as defined below. Changing this forces a new resource to be created.
- IpConnect boolEnabled 
- Is IP Connect feature enabled for the Bastion Host. Defaults to - false.- Note: - ip_connect_enabledis only supported when- skuis- Standardor- Premium.
- KerberosEnabled bool
- Is Kerberos authentication feature enabled for the Bastion Host. Defaults to - false.- Note: - kerberos_enabledis only supported when- skuis- Standardor- Premium.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Review Azure Bastion Host FAQ for supported locations.
- Name string
- Specifies the name of the Bastion Host. Changing this forces a new resource to be created.
- ResourceGroup stringName 
- The name of the resource group in which to create the Bastion Host. Changing this forces a new resource to be created.
- ScaleUnits int
- The number of scale units with which to provision the Bastion Host. Possible values are between - 2and- 50. Defaults to- 2.- Note: - scale_unitsonly can be changed when- skuis- Standardor- Premium.- scale_unitsis always- 2when- skuis- Basic.
- SessionRecording boolEnabled 
- Is Session Recording feature enabled for the Bastion Host. Defaults to - false.- Note: - session_recording_enabledis only supported when- skuis- Premium.
- bool
- Is Shareable Link feature enabled for the Bastion Host. Defaults to - false.- Note: - shareable_link_enabledis only supported when- skuis- Standardor- Premium.
- Sku string
- The SKU of the Bastion Host. Accepted values are - Developer,- Basic,- Standardand- Premium. Defaults to- Basic.- Note Downgrading the SKU will force a new resource to be created. 
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- TunnelingEnabled bool
- Is Tunneling feature enabled for the Bastion Host. Defaults to - false.- Note: - tunneling_enabledis only supported when- skuis- Standardor- Premium.
- VirtualNetwork stringId 
- The ID of the Virtual Network for the Developer Bastion Host. Changing this forces a new resource to be created.
- Zones List<string>
- Specifies a list of Availability Zones in which this Public Bastion Host should be located. Changing this forces a new resource to be created.
- CopyPaste boolEnabled 
- Is Copy/Paste feature enabled for the Bastion Host. Defaults to true.
- DnsName string
- The FQDN for the Bastion Host.
- FileCopy boolEnabled 
- Is File Copy feature enabled for the Bastion Host. Defaults to - false.- Note: - file_copy_enabledis only supported when- skuis- Standardor- Premium.
- IpConfiguration BastionHost Ip Configuration Args 
- A ip_configurationblock as defined below. Changing this forces a new resource to be created.
- IpConnect boolEnabled 
- Is IP Connect feature enabled for the Bastion Host. Defaults to - false.- Note: - ip_connect_enabledis only supported when- skuis- Standardor- Premium.
- KerberosEnabled bool
- Is Kerberos authentication feature enabled for the Bastion Host. Defaults to - false.- Note: - kerberos_enabledis only supported when- skuis- Standardor- Premium.
- Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Review Azure Bastion Host FAQ for supported locations.
- Name string
- Specifies the name of the Bastion Host. Changing this forces a new resource to be created.
- ResourceGroup stringName 
- The name of the resource group in which to create the Bastion Host. Changing this forces a new resource to be created.
- ScaleUnits int
- The number of scale units with which to provision the Bastion Host. Possible values are between - 2and- 50. Defaults to- 2.- Note: - scale_unitsonly can be changed when- skuis- Standardor- Premium.- scale_unitsis always- 2when- skuis- Basic.
- SessionRecording boolEnabled 
- Is Session Recording feature enabled for the Bastion Host. Defaults to - false.- Note: - session_recording_enabledis only supported when- skuis- Premium.
- bool
- Is Shareable Link feature enabled for the Bastion Host. Defaults to - false.- Note: - shareable_link_enabledis only supported when- skuis- Standardor- Premium.
- Sku string
- The SKU of the Bastion Host. Accepted values are - Developer,- Basic,- Standardand- Premium. Defaults to- Basic.- Note Downgrading the SKU will force a new resource to be created. 
- map[string]string
- A mapping of tags to assign to the resource.
- TunnelingEnabled bool
- Is Tunneling feature enabled for the Bastion Host. Defaults to - false.- Note: - tunneling_enabledis only supported when- skuis- Standardor- Premium.
- VirtualNetwork stringId 
- The ID of the Virtual Network for the Developer Bastion Host. Changing this forces a new resource to be created.
- Zones []string
- Specifies a list of Availability Zones in which this Public Bastion Host should be located. Changing this forces a new resource to be created.
- copyPaste BooleanEnabled 
- Is Copy/Paste feature enabled for the Bastion Host. Defaults to true.
- dnsName String
- The FQDN for the Bastion Host.
- fileCopy BooleanEnabled 
- Is File Copy feature enabled for the Bastion Host. Defaults to - false.- Note: - file_copy_enabledis only supported when- skuis- Standardor- Premium.
- ipConfiguration BastionHost Ip Configuration 
- A ip_configurationblock as defined below. Changing this forces a new resource to be created.
- ipConnect BooleanEnabled 
- Is IP Connect feature enabled for the Bastion Host. Defaults to - false.- Note: - ip_connect_enabledis only supported when- skuis- Standardor- Premium.
- kerberosEnabled Boolean
- Is Kerberos authentication feature enabled for the Bastion Host. Defaults to - false.- Note: - kerberos_enabledis only supported when- skuis- Standardor- Premium.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Review Azure Bastion Host FAQ for supported locations.
- name String
- Specifies the name of the Bastion Host. Changing this forces a new resource to be created.
- resourceGroup StringName 
- The name of the resource group in which to create the Bastion Host. Changing this forces a new resource to be created.
- scaleUnits Integer
- The number of scale units with which to provision the Bastion Host. Possible values are between - 2and- 50. Defaults to- 2.- Note: - scale_unitsonly can be changed when- skuis- Standardor- Premium.- scale_unitsis always- 2when- skuis- Basic.
- sessionRecording BooleanEnabled 
- Is Session Recording feature enabled for the Bastion Host. Defaults to - false.- Note: - session_recording_enabledis only supported when- skuis- Premium.
- Boolean
- Is Shareable Link feature enabled for the Bastion Host. Defaults to - false.- Note: - shareable_link_enabledis only supported when- skuis- Standardor- Premium.
- sku String
- The SKU of the Bastion Host. Accepted values are - Developer,- Basic,- Standardand- Premium. Defaults to- Basic.- Note Downgrading the SKU will force a new resource to be created. 
- Map<String,String>
- A mapping of tags to assign to the resource.
- tunnelingEnabled Boolean
- Is Tunneling feature enabled for the Bastion Host. Defaults to - false.- Note: - tunneling_enabledis only supported when- skuis- Standardor- Premium.
- virtualNetwork StringId 
- The ID of the Virtual Network for the Developer Bastion Host. Changing this forces a new resource to be created.
- zones List<String>
- Specifies a list of Availability Zones in which this Public Bastion Host should be located. Changing this forces a new resource to be created.
- copyPaste booleanEnabled 
- Is Copy/Paste feature enabled for the Bastion Host. Defaults to true.
- dnsName string
- The FQDN for the Bastion Host.
- fileCopy booleanEnabled 
- Is File Copy feature enabled for the Bastion Host. Defaults to - false.- Note: - file_copy_enabledis only supported when- skuis- Standardor- Premium.
- ipConfiguration BastionHost Ip Configuration 
- A ip_configurationblock as defined below. Changing this forces a new resource to be created.
- ipConnect booleanEnabled 
- Is IP Connect feature enabled for the Bastion Host. Defaults to - false.- Note: - ip_connect_enabledis only supported when- skuis- Standardor- Premium.
- kerberosEnabled boolean
- Is Kerberos authentication feature enabled for the Bastion Host. Defaults to - false.- Note: - kerberos_enabledis only supported when- skuis- Standardor- Premium.
- location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Review Azure Bastion Host FAQ for supported locations.
- name string
- Specifies the name of the Bastion Host. Changing this forces a new resource to be created.
- resourceGroup stringName 
- The name of the resource group in which to create the Bastion Host. Changing this forces a new resource to be created.
- scaleUnits number
- The number of scale units with which to provision the Bastion Host. Possible values are between - 2and- 50. Defaults to- 2.- Note: - scale_unitsonly can be changed when- skuis- Standardor- Premium.- scale_unitsis always- 2when- skuis- Basic.
- sessionRecording booleanEnabled 
- Is Session Recording feature enabled for the Bastion Host. Defaults to - false.- Note: - session_recording_enabledis only supported when- skuis- Premium.
- boolean
- Is Shareable Link feature enabled for the Bastion Host. Defaults to - false.- Note: - shareable_link_enabledis only supported when- skuis- Standardor- Premium.
- sku string
- The SKU of the Bastion Host. Accepted values are - Developer,- Basic,- Standardand- Premium. Defaults to- Basic.- Note Downgrading the SKU will force a new resource to be created. 
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- tunnelingEnabled boolean
- Is Tunneling feature enabled for the Bastion Host. Defaults to - false.- Note: - tunneling_enabledis only supported when- skuis- Standardor- Premium.
- virtualNetwork stringId 
- The ID of the Virtual Network for the Developer Bastion Host. Changing this forces a new resource to be created.
- zones string[]
- Specifies a list of Availability Zones in which this Public Bastion Host should be located. Changing this forces a new resource to be created.
- copy_paste_ boolenabled 
- Is Copy/Paste feature enabled for the Bastion Host. Defaults to true.
- dns_name str
- The FQDN for the Bastion Host.
- file_copy_ boolenabled 
- Is File Copy feature enabled for the Bastion Host. Defaults to - false.- Note: - file_copy_enabledis only supported when- skuis- Standardor- Premium.
- ip_configuration BastionHost Ip Configuration Args 
- A ip_configurationblock as defined below. Changing this forces a new resource to be created.
- ip_connect_ boolenabled 
- Is IP Connect feature enabled for the Bastion Host. Defaults to - false.- Note: - ip_connect_enabledis only supported when- skuis- Standardor- Premium.
- kerberos_enabled bool
- Is Kerberos authentication feature enabled for the Bastion Host. Defaults to - false.- Note: - kerberos_enabledis only supported when- skuis- Standardor- Premium.
- location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Review Azure Bastion Host FAQ for supported locations.
- name str
- Specifies the name of the Bastion Host. Changing this forces a new resource to be created.
- resource_group_ strname 
- The name of the resource group in which to create the Bastion Host. Changing this forces a new resource to be created.
- scale_units int
- The number of scale units with which to provision the Bastion Host. Possible values are between - 2and- 50. Defaults to- 2.- Note: - scale_unitsonly can be changed when- skuis- Standardor- Premium.- scale_unitsis always- 2when- skuis- Basic.
- session_recording_ boolenabled 
- Is Session Recording feature enabled for the Bastion Host. Defaults to - false.- Note: - session_recording_enabledis only supported when- skuis- Premium.
- bool
- Is Shareable Link feature enabled for the Bastion Host. Defaults to - false.- Note: - shareable_link_enabledis only supported when- skuis- Standardor- Premium.
- sku str
- The SKU of the Bastion Host. Accepted values are - Developer,- Basic,- Standardand- Premium. Defaults to- Basic.- Note Downgrading the SKU will force a new resource to be created. 
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- tunneling_enabled bool
- Is Tunneling feature enabled for the Bastion Host. Defaults to - false.- Note: - tunneling_enabledis only supported when- skuis- Standardor- Premium.
- virtual_network_ strid 
- The ID of the Virtual Network for the Developer Bastion Host. Changing this forces a new resource to be created.
- zones Sequence[str]
- Specifies a list of Availability Zones in which this Public Bastion Host should be located. Changing this forces a new resource to be created.
- copyPaste BooleanEnabled 
- Is Copy/Paste feature enabled for the Bastion Host. Defaults to true.
- dnsName String
- The FQDN for the Bastion Host.
- fileCopy BooleanEnabled 
- Is File Copy feature enabled for the Bastion Host. Defaults to - false.- Note: - file_copy_enabledis only supported when- skuis- Standardor- Premium.
- ipConfiguration Property Map
- A ip_configurationblock as defined below. Changing this forces a new resource to be created.
- ipConnect BooleanEnabled 
- Is IP Connect feature enabled for the Bastion Host. Defaults to - false.- Note: - ip_connect_enabledis only supported when- skuis- Standardor- Premium.
- kerberosEnabled Boolean
- Is Kerberos authentication feature enabled for the Bastion Host. Defaults to - false.- Note: - kerberos_enabledis only supported when- skuis- Standardor- Premium.
- location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Review Azure Bastion Host FAQ for supported locations.
- name String
- Specifies the name of the Bastion Host. Changing this forces a new resource to be created.
- resourceGroup StringName 
- The name of the resource group in which to create the Bastion Host. Changing this forces a new resource to be created.
- scaleUnits Number
- The number of scale units with which to provision the Bastion Host. Possible values are between - 2and- 50. Defaults to- 2.- Note: - scale_unitsonly can be changed when- skuis- Standardor- Premium.- scale_unitsis always- 2when- skuis- Basic.
- sessionRecording BooleanEnabled 
- Is Session Recording feature enabled for the Bastion Host. Defaults to - false.- Note: - session_recording_enabledis only supported when- skuis- Premium.
- Boolean
- Is Shareable Link feature enabled for the Bastion Host. Defaults to - false.- Note: - shareable_link_enabledis only supported when- skuis- Standardor- Premium.
- sku String
- The SKU of the Bastion Host. Accepted values are - Developer,- Basic,- Standardand- Premium. Defaults to- Basic.- Note Downgrading the SKU will force a new resource to be created. 
- Map<String>
- A mapping of tags to assign to the resource.
- tunnelingEnabled Boolean
- Is Tunneling feature enabled for the Bastion Host. Defaults to - false.- Note: - tunneling_enabledis only supported when- skuis- Standardor- Premium.
- virtualNetwork StringId 
- The ID of the Virtual Network for the Developer Bastion Host. Changing this forces a new resource to be created.
- zones List<String>
- Specifies a list of Availability Zones in which this Public Bastion Host should be located. Changing this forces a new resource to be created.
Supporting Types
BastionHostIpConfiguration, BastionHostIpConfigurationArgs        
- Name string
- The name of the IP configuration. Changing this forces a new resource to be created.
- PublicIp stringAddress Id 
- Reference to a Public IP Address to associate with this Bastion Host. Changing this forces a new resource to be created.
- SubnetId string
- Reference to a subnet in which this Bastion Host has been created. Changing this forces a new resource to be created. - Note: The Subnet used for the Bastion Host must have the name - AzureBastionSubnetand the subnet mask must be at least a- /26.
- Name string
- The name of the IP configuration. Changing this forces a new resource to be created.
- PublicIp stringAddress Id 
- Reference to a Public IP Address to associate with this Bastion Host. Changing this forces a new resource to be created.
- SubnetId string
- Reference to a subnet in which this Bastion Host has been created. Changing this forces a new resource to be created. - Note: The Subnet used for the Bastion Host must have the name - AzureBastionSubnetand the subnet mask must be at least a- /26.
- name String
- The name of the IP configuration. Changing this forces a new resource to be created.
- publicIp StringAddress Id 
- Reference to a Public IP Address to associate with this Bastion Host. Changing this forces a new resource to be created.
- subnetId String
- Reference to a subnet in which this Bastion Host has been created. Changing this forces a new resource to be created. - Note: The Subnet used for the Bastion Host must have the name - AzureBastionSubnetand the subnet mask must be at least a- /26.
- name string
- The name of the IP configuration. Changing this forces a new resource to be created.
- publicIp stringAddress Id 
- Reference to a Public IP Address to associate with this Bastion Host. Changing this forces a new resource to be created.
- subnetId string
- Reference to a subnet in which this Bastion Host has been created. Changing this forces a new resource to be created. - Note: The Subnet used for the Bastion Host must have the name - AzureBastionSubnetand the subnet mask must be at least a- /26.
- name str
- The name of the IP configuration. Changing this forces a new resource to be created.
- public_ip_ straddress_ id 
- Reference to a Public IP Address to associate with this Bastion Host. Changing this forces a new resource to be created.
- subnet_id str
- Reference to a subnet in which this Bastion Host has been created. Changing this forces a new resource to be created. - Note: The Subnet used for the Bastion Host must have the name - AzureBastionSubnetand the subnet mask must be at least a- /26.
- name String
- The name of the IP configuration. Changing this forces a new resource to be created.
- publicIp StringAddress Id 
- Reference to a Public IP Address to associate with this Bastion Host. Changing this forces a new resource to be created.
- subnetId String
- Reference to a subnet in which this Bastion Host has been created. Changing this forces a new resource to be created. - Note: The Subnet used for the Bastion Host must have the name - AzureBastionSubnetand the subnet mask must be at least a- /26.
Import
Bastion Hosts can be imported using the resource id, e.g.
$ pulumi import azure:compute/bastionHost:BastionHost example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/bastionHosts/instance1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azurermTerraform Provider.