» azurerm_bastion_host
Manages a Bastion Host Instance.
Note: Bastion Host Instances are a preview feature in Azure, and therefore are only supported in a select number of regions. Read more.
» Example Usage
This example deploys an Azure Bastion Host Instance to a target virtual network.
resource "azurerm_resource_group" "example" {
name = "example-resources"
location = "West Europe"
}
resource "azurerm_virtual_network" "example" {
name = "examplevnet"
address_space = ["192.168.1.0/24"]
location = "${azurerm_resource_group.example.location}"
resource_group_name = "${azurerm_resource_group.example.name}"
}
resource "azurerm_subnet" "example" {
name = "AzureBastionSubnet"
resource_group_name = "${azurerm_resource_group.example.name}"
virtual_network_name = "${azurerm_virtual_network.example.name}"
address_prefix = "192.168.1.224/27"
}
resource "azurerm_public_ip" "example" {
name = "examplepip"
location = "${azurerm_resource_group.example.location}"
resource_group_name = "${azurerm_resource_group.example.name}"
allocation_method = "Static"
sku = "Standard"
}
resource "azurerm_bastion_host" "example" {
name = "examplebastion"
location = "${azurerm_resource_group.example.location}"
resource_group_name = "${azurerm_resource_group.example.name}"
ip_configuration {
name = "configuration"
subnet_id = "${azurerm_subnet.example.id}"
public_ip_address_id = "${azurerm_public_ip.example.id}"
}
}
» Argument Reference
The following arguments are supported:
name
- (Required) Specifies the name of the Bastion Host. Changing this forces a new resource to be created.resource_group_name
- (Required) The name of the resource group in which to create the Bastion Host.location
- (Required) Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.ip_configuration
- (Required) Aip_configuration
block as defined below.tags
- (Optional) A mapping of tags to assign to the resource.
A ip_configuration
block supports the following:
name
- (Required) The name of the IP configuration.subnet_id
- (Required) Reference to a subnet in which this Bastion Host has been created.public_ip_address_id
(Required) Reference to a Public IP Address to associate with this Bastion Host.
» Attributes Reference
The following attributes are exported:
dns_name
- The FQDN for the Azure Bastion Host.
» Import
Bastion Hosts can be imported using the resource id
, e.g.
terraform import azurerm_bastion_host.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/bastionHosts/instance1